@@ -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 | |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | array_keys($this->accessibleProperties($toClass)) |
| 22 | 22 | ); |
| 23 | 23 | |
| 24 | - return Changes::fromArray(array_values(array_map(function (string $property) use ($fromClass) : Change { |
|
| 24 | + return Changes::fromArray(array_values(array_map(function(string $property) use ($fromClass) : Change { |
|
| 25 | 25 | return Change::removed( |
| 26 | 26 | sprintf('Property %s#%s was removed', $fromClass->getName(), $property), |
| 27 | 27 | true |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | /** @return ReflectionProperty[] */ |
| 33 | 33 | private function accessibleProperties(ReflectionClass $class) : array |
| 34 | 34 | { |
| 35 | - return array_filter($class->getProperties(), function (ReflectionProperty $property) : bool { |
|
| 35 | + return array_filter($class->getProperties(), function(ReflectionProperty $property) : bool { |
|
| 36 | 36 | return $property->isPublic() || $property->isProtected(); |
| 37 | 37 | }); |
| 38 | 38 | } |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Roave\ApiCompare\Command; |
| 5 | 5 | |
@@ -77,8 +77,8 @@ discard block |
||
| 77 | 77 | |
| 78 | 78 | // @todo fix hard-coded /src/ addition... |
| 79 | 79 | try { |
| 80 | - $fromSources = $fromPath . '/' . $sourcesPath; |
|
| 81 | - $toSources = $toPath . '/' . $sourcesPath; |
|
| 80 | + $fromSources = $fromPath.'/'.$sourcesPath; |
|
| 81 | + $toSources = $toPath.'/'.$sourcesPath; |
|
| 82 | 82 | |
| 83 | 83 | Assert::that($fromSources)->directory(); |
| 84 | 84 | Assert::that($toSources)->directory(); |
@@ -87,8 +87,8 @@ discard block |
||
| 87 | 87 | (new Comparator( |
| 88 | 88 | new Comparator\BackwardsCompatibility\ClassBased\PropertyRemoved() |
| 89 | 89 | ))->compare( |
| 90 | - $this->reflectorFactory->__invoke((string)$fromPath . '/' . $sourcesPath), |
|
| 91 | - $this->reflectorFactory->__invoke((string)$toPath . '/' . $sourcesPath) |
|
| 90 | + $this->reflectorFactory->__invoke((string) $fromPath.'/'.$sourcesPath), |
|
| 91 | + $this->reflectorFactory->__invoke((string) $toPath.'/'.$sourcesPath) |
|
| 92 | 92 | ) |
| 93 | 93 | ); |
| 94 | 94 | } finally { |
@@ -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 | |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | |
| 30 | 30 | self::assertSame( |
| 31 | 31 | $expectedMessages, |
| 32 | - array_map(function (Change $change) : string { |
|
| 32 | + array_map(function(Change $change) : string { |
|
| 33 | 33 | return $change->__toString(); |
| 34 | 34 | }, iterator_to_array($changes)) |
| 35 | 35 | ); |
@@ -43,11 +43,11 @@ discard block |
||
| 43 | 43 | return [ |
| 44 | 44 | 'RoaveTestAsset\\ClassWithPropertiesBeingRemoved' => [ |
| 45 | 45 | (new ClassReflector(new SingleFileSourceLocator( |
| 46 | - __DIR__ . '/../../../../asset/api/old/ClassWithPropertiesBeingRemoved.php', |
|
| 46 | + __DIR__.'/../../../../asset/api/old/ClassWithPropertiesBeingRemoved.php', |
|
| 47 | 47 | $locator |
| 48 | 48 | )))->reflect('RoaveTestAsset\\ClassWithPropertiesBeingRemoved'), |
| 49 | 49 | (new ClassReflector(new SingleFileSourceLocator( |
| 50 | - __DIR__ . '/../../../../asset/api/new/ClassWithPropertiesBeingRemoved.php', |
|
| 50 | + __DIR__.'/../../../../asset/api/new/ClassWithPropertiesBeingRemoved.php', |
|
| 51 | 51 | $locator |
| 52 | 52 | )))->reflect('RoaveTestAsset\\ClassWithPropertiesBeingRemoved'), |
| 53 | 53 | [ |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace RoaveTest\ApiCompare; |
| 5 | 5 | |
@@ -59,8 +59,8 @@ discard block |
||
| 59 | 59 | Change::removed('Class ClassGone has been deleted', true), |
| 60 | 60 | ]), |
| 61 | 61 | $this->comparator->compare( |
| 62 | - $reflectorFactory->__invoke(__DIR__ . '/../asset/api/old'), |
|
| 63 | - $reflectorFactory->__invoke(__DIR__ . '/../asset/api/new') |
|
| 62 | + $reflectorFactory->__invoke(__DIR__.'/../asset/api/old'), |
|
| 63 | + $reflectorFactory->__invoke(__DIR__.'/../asset/api/new') |
|
| 64 | 64 | ) |
| 65 | 65 | ); |
| 66 | 66 | } |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace RoaveTestAsset; |
| 5 | 5 | |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace RoaveTestAsset; |
| 5 | 5 | |