@@ -79,7 +79,7 @@ |
||
| 79 | 79 | return new FixerConfigurationResolver([ |
| 80 | 80 | (new FixerOptionBuilder('ignored_tags', 'List of tags that must not be treated as Doctrine Annotations.')) |
| 81 | 81 | ->setAllowedTypes(['array']) |
| 82 | - ->setAllowedValues([static function (array $values) { |
|
| 82 | + ->setAllowedValues([static function(array $values) { |
|
| 83 | 83 | foreach ($values as $value) { |
| 84 | 84 | if (!\is_string($value)) { |
| 85 | 85 | return false; |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | return $result; |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - throw self::newPregException(preg_last_error(), __METHOD__, (array) $pattern); |
|
| 44 | + throw self::newPregException(preg_last_error(), __METHOD__, (array)$pattern); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | /** |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | return $result; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - throw self::newPregException(preg_last_error(), __METHOD__, (array) $pattern); |
|
| 64 | + throw self::newPregException(preg_last_error(), __METHOD__, (array)$pattern); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | /** |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | return $result; |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | - throw self::newPregException(preg_last_error(), __METHOD__, (array) $pattern); |
|
| 88 | + throw self::newPregException(preg_last_error(), __METHOD__, (array)$pattern); |
|
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | /** |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | return $result; |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | - throw self::newPregException(preg_last_error(), __METHOD__, (array) $pattern); |
|
| 111 | + throw self::newPregException(preg_last_error(), __METHOD__, (array)$pattern); |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | /** |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | return $result; |
| 129 | 129 | } |
| 130 | 130 | |
| 131 | - throw self::newPregException(preg_last_error(), __METHOD__, (array) $pattern); |
|
| 131 | + throw self::newPregException(preg_last_error(), __METHOD__, (array)$pattern); |
|
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | /** |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | return array_map(__METHOD__, $pattern); |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | - return $pattern.'u'; |
|
| 145 | + return $pattern . 'u'; |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | /** |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | |
| 165 | 165 | $endDelimiterPosition = strrpos($pattern, $delimiter); |
| 166 | 166 | |
| 167 | - return substr($pattern, 0, $endDelimiterPosition).str_replace('u', '', substr($pattern, $endDelimiterPosition)); |
|
| 167 | + return substr($pattern, 0, $endDelimiterPosition) . str_replace('u', '', substr($pattern, $endDelimiterPosition)); |
|
| 168 | 168 | } |
| 169 | 169 | |
| 170 | 170 | /** |
@@ -89,9 +89,9 @@ discard block |
||
| 89 | 89 | $builtInFixers = []; |
| 90 | 90 | |
| 91 | 91 | /** @var SplFileInfo $file */ |
| 92 | - foreach (SymfonyFinder::create()->files()->in(__DIR__.'/Fixer')->depth(1) as $file) { |
|
| 92 | + foreach (SymfonyFinder::create()->files()->in(__DIR__ . '/Fixer')->depth(1) as $file) { |
|
| 93 | 93 | $relativeNamespace = $file->getRelativePath(); |
| 94 | - $fixerClass = 'PhpCsFixer\\Fixer\\'.($relativeNamespace ? $relativeNamespace.'\\' : '').$file->getBasename('.php'); |
|
| 94 | + $fixerClass = 'PhpCsFixer\\Fixer\\' . ($relativeNamespace ? $relativeNamespace . '\\' : '') . $file->getBasename('.php'); |
|
| 95 | 95 | if ('Fixer' === substr($fixerClass, -5)) { |
| 96 | 96 | $builtInFixers[] = $fixerClass; |
| 97 | 97 | } |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | // filter mutual conflicts |
| 226 | 226 | $report[$fixer] = array_filter( |
| 227 | 227 | $fixers, |
| 228 | - static function (string $candidate) use ($report, $fixer) { |
|
| 228 | + static function(string $candidate) use ($report, $fixer) { |
|
| 229 | 229 | return !\array_key_exists($candidate, $report) || !\in_array($fixer, $report[$candidate], true); |
| 230 | 230 | } |
| 231 | 231 | ); |
@@ -51,7 +51,7 @@ |
||
| 51 | 51 | $message = '@' === $name[0] ? 'Set must be enabled (true) or disabled (false). Other values are not allowed.' : 'Rule must be enabled (true), disabled (false) or configured (non-empty, assoc array). Other values are not allowed.'; |
| 52 | 52 | |
| 53 | 53 | if (null === $value) { |
| 54 | - $message .= ' To disable the '.('@' === $name[0] ? 'set' : 'rule').', use "FALSE" instead of "NULL".'; |
|
| 54 | + $message .= ' To disable the ' . ('@' === $name[0] ? 'set' : 'rule') . ', use "FALSE" instead of "NULL".'; |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | throw new InvalidFixerConfigurationException($name, $message); |
@@ -35,8 +35,8 @@ |
||
| 35 | 35 | if (null === self::$setDefinitions) { |
| 36 | 36 | self::$setDefinitions = []; |
| 37 | 37 | |
| 38 | - foreach (Finder::create()->files()->in(__DIR__.'/Sets') as $file) { |
|
| 39 | - $class = 'PhpCsFixer\RuleSet\Sets\\'.$file->getBasename('.php'); |
|
| 38 | + foreach (Finder::create()->files()->in(__DIR__ . '/Sets') as $file) { |
|
| 39 | + $class = 'PhpCsFixer\RuleSet\Sets\\' . $file->getBasename('.php'); |
|
| 40 | 40 | $set = new $class(); |
| 41 | 41 | |
| 42 | 42 | self::$setDefinitions[$set->getName()] = $set; |
@@ -27,7 +27,7 @@ |
||
| 27 | 27 | { |
| 28 | 28 | $name = substr(static::class, 1 + strrpos(static::class, '\\'), -3); |
| 29 | 29 | |
| 30 | - return '@'.str_replace('Risky', ':risky', $name); |
|
| 30 | + return '@' . str_replace('Risky', ':risky', $name); |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | public function isRisky(): bool |
@@ -91,7 +91,7 @@ |
||
| 91 | 91 | if (null !== $allowedValues) { |
| 92 | 92 | foreach ($allowedValues as &$allowedValue) { |
| 93 | 93 | if (\is_object($allowedValue) && \is_callable($allowedValue)) { |
| 94 | - $allowedValue = static function (/* mixed */ $values) use ($allowedValue) { |
|
| 94 | + $allowedValue = static function(/* mixed */ $values) use ($allowedValue) { |
|
| 95 | 95 | return $allowedValue($values); |
| 96 | 96 | }; |
| 97 | 97 | } |
@@ -522,40 +522,40 @@ |
||
| 522 | 522 | static $arrayOperators; |
| 523 | 523 | if (null === $arrayOperators) { |
| 524 | 524 | $arrayOperators = [ |
| 525 | - T_AND_EQUAL => true, // &= |
|
| 526 | - T_BOOLEAN_AND => true, // && |
|
| 527 | - T_BOOLEAN_OR => true, // || |
|
| 528 | - T_CONCAT_EQUAL => true, // .= |
|
| 529 | - T_DIV_EQUAL => true, // /= |
|
| 530 | - T_DOUBLE_ARROW => true, // => |
|
| 531 | - T_IS_EQUAL => true, // == |
|
| 532 | - T_IS_GREATER_OR_EQUAL => true, // >= |
|
| 533 | - T_IS_IDENTICAL => true, // === |
|
| 534 | - T_IS_NOT_EQUAL => true, // !=, <> |
|
| 535 | - T_IS_NOT_IDENTICAL => true, // !== |
|
| 536 | - T_IS_SMALLER_OR_EQUAL => true, // <= |
|
| 537 | - T_LOGICAL_AND => true, // and |
|
| 538 | - T_LOGICAL_OR => true, // or |
|
| 539 | - T_LOGICAL_XOR => true, // xor |
|
| 540 | - T_MINUS_EQUAL => true, // -= |
|
| 541 | - T_MOD_EQUAL => true, // %= |
|
| 542 | - T_MUL_EQUAL => true, // *= |
|
| 543 | - T_OR_EQUAL => true, // |= |
|
| 544 | - T_PLUS_EQUAL => true, // += |
|
| 545 | - T_POW => true, // ** |
|
| 546 | - T_POW_EQUAL => true, // **= |
|
| 547 | - T_SL => true, // << |
|
| 548 | - T_SL_EQUAL => true, // <<= |
|
| 549 | - T_SR => true, // >> |
|
| 550 | - T_SR_EQUAL => true, // >>= |
|
| 551 | - T_XOR_EQUAL => true, // ^= |
|
| 552 | - T_SPACESHIP => true, // <=> |
|
| 553 | - T_COALESCE => true, // ?? |
|
| 525 | + T_AND_EQUAL => true, // &= |
|
| 526 | + T_BOOLEAN_AND => true, // && |
|
| 527 | + T_BOOLEAN_OR => true, // || |
|
| 528 | + T_CONCAT_EQUAL => true, // .= |
|
| 529 | + T_DIV_EQUAL => true, // /= |
|
| 530 | + T_DOUBLE_ARROW => true, // => |
|
| 531 | + T_IS_EQUAL => true, // == |
|
| 532 | + T_IS_GREATER_OR_EQUAL => true, // >= |
|
| 533 | + T_IS_IDENTICAL => true, // === |
|
| 534 | + T_IS_NOT_EQUAL => true, // !=, <> |
|
| 535 | + T_IS_NOT_IDENTICAL => true, // !== |
|
| 536 | + T_IS_SMALLER_OR_EQUAL => true, // <= |
|
| 537 | + T_LOGICAL_AND => true, // and |
|
| 538 | + T_LOGICAL_OR => true, // or |
|
| 539 | + T_LOGICAL_XOR => true, // xor |
|
| 540 | + T_MINUS_EQUAL => true, // -= |
|
| 541 | + T_MOD_EQUAL => true, // %= |
|
| 542 | + T_MUL_EQUAL => true, // *= |
|
| 543 | + T_OR_EQUAL => true, // |= |
|
| 544 | + T_PLUS_EQUAL => true, // += |
|
| 545 | + T_POW => true, // ** |
|
| 546 | + T_POW_EQUAL => true, // **= |
|
| 547 | + T_SL => true, // << |
|
| 548 | + T_SL_EQUAL => true, // <<= |
|
| 549 | + T_SR => true, // >> |
|
| 550 | + T_SR_EQUAL => true, // >>= |
|
| 551 | + T_XOR_EQUAL => true, // ^= |
|
| 552 | + T_SPACESHIP => true, // <=> |
|
| 553 | + T_COALESCE => true, // ?? |
|
| 554 | 554 | ]; |
| 555 | 555 | |
| 556 | 556 | // @TODO: drop condition when PHP 7.4+ is required |
| 557 | 557 | if (\defined('T_COALESCE_EQUAL')) { |
| 558 | - $arrayOperators[T_COALESCE_EQUAL] = true; // ??= |
|
| 558 | + $arrayOperators[T_COALESCE_EQUAL] = true; // ??= |
|
| 559 | 559 | } |
| 560 | 560 | } |
| 561 | 561 | |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | { |
| 41 | 41 | $this->registerBuiltInTransformers(); |
| 42 | 42 | |
| 43 | - usort($this->items, static function (TransformerInterface $a, TransformerInterface $b) { |
|
| 43 | + usort($this->items, static function(TransformerInterface $a, TransformerInterface $b) { |
|
| 44 | 44 | return $b->getPriority() <=> $a->getPriority(); |
| 45 | 45 | }); |
| 46 | 46 | } |
@@ -101,9 +101,9 @@ discard block |
||
| 101 | 101 | private function findBuiltInTransformers(): iterable |
| 102 | 102 | { |
| 103 | 103 | /** @var SplFileInfo $file */ |
| 104 | - foreach (Finder::create()->files()->in(__DIR__.'/Transformer') as $file) { |
|
| 104 | + foreach (Finder::create()->files()->in(__DIR__ . '/Transformer') as $file) { |
|
| 105 | 105 | $relativeNamespace = $file->getRelativePath(); |
| 106 | - $class = __NAMESPACE__.'\\Transformer\\'.($relativeNamespace ? $relativeNamespace.'\\' : '').$file->getBasename('.php'); |
|
| 106 | + $class = __NAMESPACE__ . '\\Transformer\\' . ($relativeNamespace ? $relativeNamespace . '\\' : '') . $file->getBasename('.php'); |
|
| 107 | 107 | |
| 108 | 108 | yield new $class(); |
| 109 | 109 | } |