@@ -59,7 +59,7 @@ |
||
59 | 59 | // Satisfy php md |
60 | 60 | unset($callback); |
61 | 61 | |
62 | - return $this->isValidContentInTrait($tagContent, function (array $matches): bool { |
|
62 | + return $this->isValidContentInTrait($tagContent, function(array $matches): bool { |
|
63 | 63 | return (bool) filter_var($matches['mail'], FILTER_VALIDATE_EMAIL); |
64 | 64 | }); |
65 | 65 | } |
@@ -105,12 +105,12 @@ discard block |
||
105 | 105 | $file->fixer->beginChangeset(); |
106 | 106 | |
107 | 107 | if ($this->isCustomArrayType($returnTypeHint)) { |
108 | - $returnTypeHint = ($returnTypeHint[0] === '?' ? '?' : '') . 'array'; |
|
108 | + $returnTypeHint = ($returnTypeHint[0] === '?' ? '?' : '').'array'; |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | $file->fixer->addContent( |
112 | 112 | $this->token['parenthesis_closer'], |
113 | - ': ' . $returnTypeHint |
|
113 | + ': '.$returnTypeHint |
|
114 | 114 | ); |
115 | 115 | |
116 | 116 | $file->fixer->endChangeset(); |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | |
147 | 147 | // We add the question mark if there is a nullable type. |
148 | 148 | if (in_array($type, self::NULL_TYPES, true) && ($typeCount > 1)) { |
149 | - $returnTypeHint = '?' . $returnTypeHint; |
|
149 | + $returnTypeHint = '?'.$returnTypeHint; |
|
150 | 150 | continue; // We still need this continue to prevent further execution of the questionmark. |
151 | 151 | } |
152 | 152 | |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | */ |
289 | 289 | private function loadFixableTypes(?array $returnTypes): array |
290 | 290 | { |
291 | - return array_filter($returnTypes ?? [], function (string $returnType): bool { |
|
291 | + return array_filter($returnTypes ?? [], function(string $returnType): bool { |
|
292 | 292 | return $this->isFixableReturnType($returnType); |
293 | 293 | }); |
294 | 294 | } |
@@ -105,7 +105,7 @@ |
||
105 | 105 | protected function processTagContent(?string $tagContent = null): void |
106 | 106 | { |
107 | 107 | if (!$this->isValidContent($tagContent)) { |
108 | - $this->getFile()->{'add' . ($this->asError() ? 'Error' : 'Warning')}(...$this->getReportData($tagContent)); |
|
108 | + $this->getFile()->{'add'.($this->asError() ? 'Error' : 'Warning')}(...$this->getReportData($tagContent)); |
|
109 | 109 | } |
110 | 110 | } |
111 | 111 | } |
@@ -22,7 +22,7 @@ |
||
22 | 22 | /** |
23 | 23 | * The message for the error. |
24 | 24 | */ |
25 | - private const MESSAGE_TAG_MISSING_DATES = 'Please provide the version since when its deprecated and when it will ' . |
|
25 | + private const MESSAGE_TAG_MISSING_DATES = 'Please provide the version since when its deprecated and when it will '. |
|
26 | 26 | 'be removed (Pattern: %s).'; |
27 | 27 | |
28 | 28 | /** |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | /** |
75 | 75 | * The message for the mixed type warning. |
76 | 76 | */ |
77 | - private const MESSAGE_TAG_MIXED_TYPE = 'We suggest that you avoid the "mixed" type and declare the ' . |
|
77 | + private const MESSAGE_TAG_MIXED_TYPE = 'We suggest that you avoid the "mixed" type and declare the '. |
|
78 | 78 | 'required types in detail.'; |
79 | 79 | |
80 | 80 | /** |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | { |
198 | 198 | $varOfThisTag = $this->getArgumentTokenOfTag(); |
199 | 199 | |
200 | - return '/(?P<type>[\w|\|\[\]]*) ?(?P<var>' . preg_quote($varOfThisTag['content'], '/') . |
|
200 | + return '/(?P<type>[\w|\|\[\]]*) ?(?P<var>'.preg_quote($varOfThisTag['content'], '/'). |
|
201 | 201 | ') ?(?P<desc>.*)/m'; |
202 | 202 | } |
203 | 203 | |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | ))->setToken($this->token); |
235 | 235 | } |
236 | 236 | |
237 | - $this->varTokens = array_filter($this->tokens, function (array $token) use ($varPositions): bool { |
|
237 | + $this->varTokens = array_filter($this->tokens, function(array $token) use ($varPositions): bool { |
|
238 | 238 | return in_array($token['pointer'], $varPositions, true); |
239 | 239 | }); |
240 | 240 | |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | $this->stackPos - 1 |
257 | 257 | ); |
258 | 258 | |
259 | - $tagPosBeforeThis = array_filter($tagPosBeforeThis, function (int $position) { |
|
259 | + $tagPosBeforeThis = array_filter($tagPosBeforeThis, function(int $position) { |
|
260 | 260 | return $this->tokens[$position]['content'] === '@param'; |
261 | 261 | }); |
262 | 262 |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | /** |
33 | 33 | * Error message for multiple returns. |
34 | 34 | */ |
35 | - private const WARNING_MULTIPLE_RETURNS_FOUND = 'Multiple returns detected. Did you refactor your method? Please ' . |
|
35 | + private const WARNING_MULTIPLE_RETURNS_FOUND = 'Multiple returns detected. Did you refactor your method? Please '. |
|
36 | 36 | 'do not use an early return if your method/function still is cluttered.'; |
37 | 37 | |
38 | 38 | /** |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | $this->token['scope_closer'] |
62 | 62 | ); |
63 | 63 | |
64 | - return array_filter($returnPositions, function (int $returnPos): bool { |
|
64 | + return array_filter($returnPositions, function(int $returnPos): bool { |
|
65 | 65 | $possibleClosure = $this->file->findPrevious([T_CLOSURE, T_FUNCTION], $returnPos - 1, $this->stackPos); |
66 | 66 | |
67 | 67 | return $possibleClosure === $this->stackPos; |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | if (count($returnPositions) > 1) { |
81 | 81 | array_shift($returnPositions); |
82 | 82 | |
83 | - array_walk($returnPositions, function (int $returnPos): void { |
|
83 | + array_walk($returnPositions, function(int $returnPos): void { |
|
84 | 84 | $this->file->addWarning( |
85 | 85 | self::WARNING_MULTIPLE_RETURNS_FOUND, |
86 | 86 | $returnPos, |
@@ -35,7 +35,7 @@ |
||
35 | 35 | /** |
36 | 36 | * The message for the mixed type warning. |
37 | 37 | */ |
38 | - private const MESSAGE_MIXED_TYPE = 'We suggest that you avoid the "mixed" type and declare the ' . |
|
38 | + private const MESSAGE_MIXED_TYPE = 'We suggest that you avoid the "mixed" type and declare the '. |
|
39 | 39 | 'required types in detail.'; |
40 | 40 | |
41 | 41 | /** |
@@ -45,7 +45,7 @@ |
||
45 | 45 | ); |
46 | 46 | |
47 | 47 | if ($sniffName) { |
48 | - $sniffClassName .= '.' . $sniffName; |
|
48 | + $sniffClassName .= '.'.$sniffName; |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | return $sniffClassName; |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * |
43 | 43 | * @var string |
44 | 44 | */ |
45 | - private const MESSAGE_WRONG_POSITION = 'Your php structure is at a wrong position. ' . |
|
45 | + private const MESSAGE_WRONG_POSITION = 'Your php structure is at a wrong position. '. |
|
46 | 46 | 'The sorting order is: T_USE, T_CONST, T_VARIABLE, T_FUNCTION. We expect a %s (%s).'; |
47 | 47 | |
48 | 48 | /** |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | */ |
94 | 94 | private function loadTokensForPositions(array $subTokenPoss): array |
95 | 95 | { |
96 | - $subTokens = array_map(function (int $position): array { |
|
96 | + $subTokens = array_map(function(int $position): array { |
|
97 | 97 | return $this->tokens[$position]; |
98 | 98 | }, $subTokenPoss); |
99 | 99 | |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | */ |
123 | 123 | private function removeUnwantedTokens(array $subTokens): array |
124 | 124 | { |
125 | - return array_filter($subTokens, function (array $subToken): bool { |
|
125 | + return array_filter($subTokens, function(array $subToken): bool { |
|
126 | 126 | switch ($subToken['code']) { |
127 | 127 | case T_VARIABLE: |
128 | 128 | $return = (new PropertyHelper($this->file))->isProperty($subToken['pointer']); |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | */ |
162 | 162 | private function sortTokens(array $subTokens): array |
163 | 163 | { |
164 | - uasort($subTokens, function (array $leftToken, array $rightToken): int { |
|
164 | + uasort($subTokens, function(array $leftToken, array $rightToken): int { |
|
165 | 165 | // Don't change the structure by default. |
166 | 166 | $return = $leftToken['line'] <=> $rightToken['line']; |
167 | 167 |