Passed
Push — master ( 269e9e...4cbbd1 )
by Björn
05:36 queued 03:13
created
src/Standards/BestIt/CodeSniffer/Helper/DocDescriptionHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -300,7 +300,7 @@
 block discarded – undo
300 300
 
301 301
         $this->file->getFixer()->addContent(
302 302
             $descEndPtr,
303
-            $this->file->getEolChar() . str_repeat('    ', $descEndToken['level']) . ' *'
303
+            $this->file->getEolChar().str_repeat('    ', $descEndToken['level']).' *'
304 304
         );
305 305
 
306 306
         $this->file->getFixer()->endChangeset();
Please login to merge, or discard this patch.
src/Standards/BestIt/Sniffs/DocTags/AuthorTagSniff.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Standards/BestIt/Sniffs/Commenting/AbstractDocSniff.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
 
128 128
         $this->file->fixer->addContent(
129 129
             $position,
130
-            $this->file->getEolChar() . str_repeat('    ', $token['level']) . ' *'
130
+            $this->file->getEolChar().str_repeat('    ', $token['level']).' *'
131 131
         );
132 132
 
133 133
         $this->file->fixer->endChangeset();
Please login to merge, or discard this patch.
src/Standards/BestIt/CodeSniffer/AbstractFileDecorator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -762,7 +762,7 @@
 block discarded – undo
762 762
     {
763 763
         $baseProps = get_object_vars($baseFile);
764 764
 
765
-        array_walk($baseProps, function ($value, $key) {
765
+        array_walk($baseProps, function($value, $key) {
766 766
             $this->$key = $value;
767 767
         });
768 768
     }
Please login to merge, or discard this patch.
src/Standards/BestIt/Sniffs/TypeHints/ReturnTypeDeclarationSniff.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -105,12 +105,12 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Standards/BestIt/Sniffs/DocTags/TagContentFormatTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Standards/BestIt/Sniffs/DocTags/DeprecatedTagSniff.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
src/Standards/BestIt/Sniffs/DocTags/ParamTagSniff.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Standards/BestIt/Sniffs/Functions/MultipleReturnSniff.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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,
Please login to merge, or discard this patch.