@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace RoaveTest\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 RoaveTest\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\ClassBased; |
6 | 6 | |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | $comparator |
61 | 61 | ->expects(self::exactly(3)) |
62 | 62 | ->method('compare') |
63 | - ->willReturnCallback(function (ReflectionMethod $from, ReflectionMethod $to) : Changes { |
|
63 | + ->willReturnCallback(function(ReflectionMethod $from, ReflectionMethod $to) : Changes { |
|
64 | 64 | $methodName = $from->getName(); |
65 | 65 | |
66 | 66 | self::assertSame(strtolower($methodName), strtolower($to->getName())); |
@@ -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\ClassBased; |
6 | 6 | |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | $comparator |
61 | 61 | ->expects(self::exactly(2)) |
62 | 62 | ->method('compare') |
63 | - ->willReturnCallback(function (ReflectionProperty $from, ReflectionProperty $to) : Changes { |
|
63 | + ->willReturnCallback(function(ReflectionProperty $from, ReflectionProperty $to) : Changes { |
|
64 | 64 | $propertyName = $from->getName(); |
65 | 65 | |
66 | 66 | self::assertSame($propertyName, $to->getName()); |
@@ -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\ClassBased; |
6 | 6 | |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | $comparator |
61 | 61 | ->expects(self::exactly(2)) |
62 | 62 | ->method('compare') |
63 | - ->willReturnCallback(function (ReflectionClassConstant $from, ReflectionClassConstant $to) : Changes { |
|
63 | + ->willReturnCallback(function(ReflectionClassConstant $from, ReflectionClassConstant $to) : Changes { |
|
64 | 64 | $propertyName = $from->getName(); |
65 | 65 | |
66 | 66 | self::assertSame($propertyName, $to->getName()); |
@@ -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\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 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace RoaveTest\ApiCompare\Comparator\BackwardsCompatibility\ClassBased; |
6 | 6 |