@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Roave\ApiCompare\Comparator\BackwardsCompatibility\MethodBased; |
| 6 | 6 | |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Roave\ApiCompare\Comparator\BackwardsCompatibility\PropertyBased; |
| 6 | 6 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace RoaveTest\ApiCompare\Comparator\BackwardsCompatibility\FunctionBased; |
| 6 | 6 | |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | |
| 36 | 36 | self::assertSame( |
| 37 | 37 | $expectedMessages, |
| 38 | - array_map(function (Change $change) : string { |
|
| 38 | + array_map(function(Change $change) : string { |
|
| 39 | 39 | return $change->__toString(); |
| 40 | 40 | }, iterator_to_array($changes)) |
| 41 | 41 | ); |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | array_combine( |
| 117 | 117 | array_keys($functions), |
| 118 | 118 | array_map( |
| 119 | - function (string $function, array $errorMessages) use ($fromReflector, $toReflector) : array { |
|
| 119 | + function(string $function, array $errorMessages) use ($fromReflector, $toReflector) : array { |
|
| 120 | 120 | return [ |
| 121 | 121 | $fromReflector->reflect($function), |
| 122 | 122 | $toReflector->reflect($function), |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace RoaveTest\ApiCompare\Comparator\BackwardsCompatibility\FunctionBased; |
| 6 | 6 | |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | |
| 36 | 36 | self::assertSame( |
| 37 | 37 | $expectedMessages, |
| 38 | - array_map(function (Change $change) : string { |
|
| 38 | + array_map(function(Change $change) : string { |
|
| 39 | 39 | return $change->__toString(); |
| 40 | 40 | }, iterator_to_array($changes)) |
| 41 | 41 | ); |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | array_combine( |
| 117 | 117 | array_keys($functions), |
| 118 | 118 | array_map( |
| 119 | - function (string $function, array $errorMessages) use ($fromReflector, $toReflector) : array { |
|
| 119 | + function(string $function, array $errorMessages) use ($fromReflector, $toReflector) : array { |
|
| 120 | 120 | return [ |
| 121 | 121 | $fromReflector->reflect($function), |
| 122 | 122 | $toReflector->reflect($function), |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Roave\ApiCompare\Comparator\BackwardsCompatibility\ClassBased; |
| 6 | 6 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Roave\ApiCompare\Comparator\BackwardsCompatibility\ClassBased; |
| 6 | 6 | |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | |
| 20 | 20 | public function compare(ReflectionClass $fromClass, ReflectionClass $toClass) : Changes |
| 21 | 21 | { |
| 22 | - if (! $fromClass->isFinal()) { |
|
| 22 | + if (!$fromClass->isFinal()) { |
|
| 23 | 23 | return Changes::new(); |
| 24 | 24 | } |
| 25 | 25 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Roave\ApiCompare\Comparator\BackwardsCompatibility\FunctionBased; |
| 6 | 6 | |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | private function typeToString(?ReflectionType $type) : string |
| 80 | 80 | { |
| 81 | - if (! $type) { |
|
| 81 | + if (!$type) { |
|
| 82 | 82 | return 'no type'; |
| 83 | 83 | } |
| 84 | 84 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Roave\ApiCompare\Comparator\BackwardsCompatibility\FunctionBased; |
| 6 | 6 | |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | private function typeToString(?ReflectionType $type) : string |
| 80 | 80 | { |
| 81 | - if (! $type) { |
|
| 81 | + if (!$type) { |
|
| 82 | 82 | return 'no type'; |
| 83 | 83 | } |
| 84 | 84 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace RoaveTest\ApiCompare\Formatter; |
| 6 | 6 | |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | |
| 37 | 37 | $output->expects(self::any()) |
| 38 | 38 | ->method('writeln') |
| 39 | - ->willReturnCallback(function (string $output) use ($changeToExpect) : void { |
|
| 39 | + ->willReturnCallback(function(string $output) use ($changeToExpect) : void { |
|
| 40 | 40 | self::assertContains($changeToExpect, $output); |
| 41 | 41 | }); |
| 42 | 42 | |