EVOLUTION-NINJA
Edit File: NoTrailingCommaInSinglelineFunctionCallFixer.php
<?php declare(strict_types=1); /* * This file is part of PHP CS Fixer. * * (c) Fabien Potencier <fabien@symfony.com> * Dariusz RumiĆski <dariusz.ruminski@gmail.com> * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer\Fixer\FunctionNotation; use PhpCsFixer\AbstractProxyFixer; use PhpCsFixer\Fixer\Basic\NoTrailingCommaInSinglelineFixer; use PhpCsFixer\Fixer\DeprecatedFixerInterface; use PhpCsFixer\FixerDefinition\CodeSample; use PhpCsFixer\FixerDefinition\FixerDefinition; use PhpCsFixer\FixerDefinition\FixerDefinitionInterface; /** * @deprecated */ final class NoTrailingCommaInSinglelineFunctionCallFixer extends AbstractProxyFixer implements DeprecatedFixerInterface { /** * {@inheritdoc} */ public function getDefinition(): FixerDefinitionInterface { return new FixerDefinition( 'When making a method or function call on a single line there MUST NOT be a trailing comma after the last argument.', [new CodeSample("<?php\nfoo(\$a,);\n")] ); } /** * {@inheritdoc} * * Must run before NoSpacesInsideParenthesisFixer. */ public function getPriority(): int { return 3; } /** * {@inheritdoc} */ public function getSuccessorsNames(): array { return array_keys($this->proxyFixers); } /** * {@inheritdoc} */ protected function createProxyFixers(): array { $fixer = new NoTrailingCommaInSinglelineFixer(); $fixer->configure(['elements' => ['arguments', 'array_destructuring']]); return [$fixer]; } }