@@ -17,7 +17,7 @@ |
||
17 | 17 | return Changes::empty(); |
18 | 18 | } |
19 | 19 | |
20 | - if (! $toClass->isFinal()) { |
|
20 | + if (!$toClass->isFinal()) { |
|
21 | 21 | return Changes::empty(); |
22 | 22 | } |
23 | 23 |
@@ -18,7 +18,7 @@ |
||
18 | 18 | { |
19 | 19 | public function __invoke(ReflectionClass $fromClass, ReflectionClass $toClass) : Changes |
20 | 20 | { |
21 | - if ($fromClass->isInterface() || ! $toClass->isInterface()) { |
|
21 | + if ($fromClass->isInterface() || !$toClass->isInterface()) { |
|
22 | 22 | // checking whether a class became an interface is done in `InterfaceBecameClass` |
23 | 23 | return Changes::empty(); |
24 | 24 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | return Changes::empty(); |
24 | 24 | } |
25 | 25 | |
26 | - if ($fromClass->isAbstract() || ! $toClass->isAbstract()) { |
|
26 | + if ($fromClass->isAbstract() || !$toClass->isAbstract()) { |
|
27 | 27 | return Changes::empty(); |
28 | 28 | } |
29 | 29 |
@@ -19,7 +19,7 @@ |
||
19 | 19 | |
20 | 20 | public function __invoke(ReflectionClass $fromClass, ReflectionClass $toClass) : Changes |
21 | 21 | { |
22 | - if (! $fromClass->isFinal()) { |
|
22 | + if (!$fromClass->isFinal()) { |
|
23 | 23 | return Changes::empty(); |
24 | 24 | } |
25 | 25 |
@@ -18,7 +18,7 @@ |
||
18 | 18 | { |
19 | 19 | public function __invoke(ReflectionClass $fromClass, ReflectionClass $toClass) : Changes |
20 | 20 | { |
21 | - if ($fromClass->isTrait() || ! $toClass->isTrait()) { |
|
21 | + if ($fromClass->isTrait() || !$toClass->isTrait()) { |
|
22 | 22 | return Changes::empty(); |
23 | 23 | } |
24 | 24 |
@@ -74,7 +74,7 @@ |
||
74 | 74 | |
75 | 75 | private function typeToString(?ReflectionType $type) : string |
76 | 76 | { |
77 | - if (! $type) { |
|
77 | + if (!$type) { |
|
78 | 78 | return 'no type'; |
79 | 79 | } |
80 | 80 |
@@ -74,7 +74,7 @@ |
||
74 | 74 | |
75 | 75 | private function typeToString(?ReflectionType $type) : string |
76 | 76 | { |
77 | - if (! $type) { |
|
77 | + if (!$type) { |
|
78 | 78 | return 'no type'; |
79 | 79 | } |
80 | 80 |
@@ -74,7 +74,7 @@ |
||
74 | 74 | |
75 | 75 | private function typeToString(?ReflectionType $type) : string |
76 | 76 | { |
77 | - if (! $type) { |
|
77 | + if (!$type) { |
|
78 | 78 | return 'no type'; |
79 | 79 | } |
80 | 80 |
@@ -74,7 +74,7 @@ |
||
74 | 74 | |
75 | 75 | private function typeToString(?ReflectionType $type) : string |
76 | 76 | { |
77 | - if (! $type) { |
|
77 | + if (!$type) { |
|
78 | 78 | return 'no type'; |
79 | 79 | } |
80 | 80 |