Passed
Pull Request — master (#8)
by Luis
28:30 queued 13:28
created
src/Processors/ImageProcessorName.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 
17 17
     public function __construct(?string $name)
18 18
     {
19
-        if (! \in_array($name, self::$names, true)) {
19
+        if (!\in_array($name, self::$names, true)) {
20 20
             throw UnknownImageProcessor::named($name, self::$names);
21 21
         }
22 22
         $this->name = $name;
Please login to merge, or discard this patch.
src/Code/Methods/MethodDocBlock.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
     private function extractReturnType(?string $comment): void
53 53
     {
54
-        if (preg_match(self::RETURN_EXPRESSION, (string) $comment, $matches) === 1) {
54
+        if (preg_match(self::RETURN_EXPRESSION, (string)$comment, $matches) === 1) {
55 55
             $this->returnType = TypeDeclaration::from(trim($matches[1]));
56 56
             return;
57 57
         }
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
     private function extractParametersTypes(?string $comment): void
63 63
     {
64
-        if (preg_match_all(self::PARAMETER_EXPRESSION, (string) $comment, $matches) < 1) {
64
+        if (preg_match_all(self::PARAMETER_EXPRESSION, (string)$comment, $matches) < 1) {
65 65
             $this->parametersTypes = [];
66 66
             return;
67 67
         }
Please login to merge, or discard this patch.
src/Code/Definition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     {
41 41
         return \count(array_filter(
42 42
             $this->methods,
43
-            static fn (Method $method): bool => $method->hasVisibility($modifier)
43
+            static fn(Method $method): bool => $method->hasVisibility($modifier)
44 44
         ));
45 45
     }
46 46
 
Please login to merge, or discard this patch.
src/Code/Variables/TypeDeclaration.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     public function isBuiltIn(): bool
59 59
     {
60
-        $type = (string) $this->name;
60
+        $type = (string)$this->name;
61 61
         if ($this->isArray()) {
62 62
             $type = $this->removeArraySuffix();
63 63
         }
@@ -66,12 +66,12 @@  discard block
 block discarded – undo
66 66
 
67 67
     public function isBuiltInArray(): bool
68 68
     {
69
-        return (string) $this->name === 'array';
69
+        return (string)$this->name === 'array';
70 70
     }
71 71
 
72 72
     public function isArray(): bool
73 73
     {
74
-        return strpos((string) $this->name, '[]') === \strlen((string) $this->name) - 2;
74
+        return strpos((string)$this->name, '[]') === \strlen((string)$this->name) - 2;
75 75
     }
76 76
 
77 77
     public function isNullable(): bool
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
     public function removeArraySuffix(): string
83 83
     {
84
-        return substr((string) $this->name, 0, -2);
84
+        return substr((string)$this->name, 0, -2);
85 85
     }
86 86
 
87 87
     public function __toString()
Please login to merge, or discard this patch.
src/Code/ClassDefinition.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     public function constructorParameters(): array
68 68
     {
69
-        $constructors = array_filter($this->methods, static fn (Method $method): bool => $method->isConstructor());
69
+        $constructors = array_filter($this->methods, static fn(Method $method): bool => $method->isConstructor());
70 70
         $constructor = reset($constructors);
71 71
 
72 72
         return $constructor === false ? [] : $constructor->parameters();
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     {
82 82
         return \count(array_filter(
83 83
             $this->attributes,
84
-            static fn (Attribute $attribute): bool => $attribute->hasVisibility($modifier)
84
+            static fn(Attribute $attribute): bool => $attribute->hasVisibility($modifier)
85 85
         ));
86 86
     }
87 87
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     {
95 95
         return \count(array_filter(
96 96
             $this->attributes,
97
-            static fn (Attribute $attribute): bool =>
97
+            static fn(Attribute $attribute): bool =>
98 98
                 $attribute->hasTypeDeclaration() && $attribute->hasVisibility($modifier)
99 99
         ));
100 100
     }
@@ -152,6 +152,6 @@  discard block
 block discarded – undo
152 152
      */
153 153
     public function isAbstract(): bool
154 154
     {
155
-        return \count(array_filter($this->methods(), static fn (Method $method): bool => $method->isAbstract())) > 0;
155
+        return \count(array_filter($this->methods(), static fn(Method $method): bool => $method->isAbstract())) > 0;
156 156
     }
157 157
 }
Please login to merge, or discard this patch.
src/Code/Attributes/AttributeDocBlock.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 
36 36
     private function extractType(?string $comment): void
37 37
     {
38
-        if (preg_match(self::VAR_EXPRESSION, (string) $comment, $matches) === 1) {
38
+        if (preg_match(self::VAR_EXPRESSION, (string)$comment, $matches) === 1) {
39 39
             $this->attributeType = TypeDeclaration::from(trim($matches[1]));
40 40
             return;
41 41
         }
Please login to merge, or discard this patch.