@@ -61,7 +61,7 @@ |
||
61 | 61 | $comparator |
62 | 62 | ->expects(self::exactly(2)) |
63 | 63 | ->method('__invoke') |
64 | - ->willReturnCallback(static function (ReflectionClassConstant $from, ReflectionClassConstant $to) : Changes { |
|
64 | + ->willReturnCallback(static function(ReflectionClassConstant $from, ReflectionClassConstant $to) : Changes { |
|
65 | 65 | $propertyName = $from->getName(); |
66 | 66 | |
67 | 67 | self::assertSame($propertyName, $to->getName()); |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | |
32 | 32 | self::assertSame( |
33 | 33 | $expectedMessages, |
34 | - array_map(static function (Change $change) : string { |
|
34 | + array_map(static function(Change $change) : string { |
|
35 | 35 | return $change->__toString(); |
36 | 36 | }, iterator_to_array($changes)) |
37 | 37 | ); |
@@ -45,11 +45,11 @@ discard block |
||
45 | 45 | return [ |
46 | 46 | 'RoaveTestAsset\\ClassWithMethodsBeingRemoved' => [ |
47 | 47 | (new ClassReflector(new SingleFileSourceLocator( |
48 | - __DIR__ . '/../../../../asset/api/old/ClassWithMethodsBeingRemoved.php', |
|
48 | + __DIR__.'/../../../../asset/api/old/ClassWithMethodsBeingRemoved.php', |
|
49 | 49 | $locator |
50 | 50 | )))->reflect('RoaveTestAsset\\ClassWithMethodsBeingRemoved'), |
51 | 51 | (new ClassReflector(new SingleFileSourceLocator( |
52 | - __DIR__ . '/../../../../asset/api/new/ClassWithMethodsBeingRemoved.php', |
|
52 | + __DIR__.'/../../../../asset/api/new/ClassWithMethodsBeingRemoved.php', |
|
53 | 53 | $locator |
54 | 54 | )))->reflect('RoaveTestAsset\\ClassWithMethodsBeingRemoved'), |
55 | 55 | [ |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | |
32 | 32 | self::assertSame( |
33 | 33 | $expectedMessages, |
34 | - array_map(static function (Change $change) : string { |
|
34 | + array_map(static function(Change $change) : string { |
|
35 | 35 | return $change->__toString(); |
36 | 36 | }, iterator_to_array($changes)) |
37 | 37 | ); |
@@ -45,11 +45,11 @@ discard block |
||
45 | 45 | return [ |
46 | 46 | 'RoaveTestAsset\\ClassWithPropertiesBeingRemoved' => [ |
47 | 47 | (new ClassReflector(new SingleFileSourceLocator( |
48 | - __DIR__ . '/../../../../asset/api/old/ClassWithPropertiesBeingRemoved.php', |
|
48 | + __DIR__.'/../../../../asset/api/old/ClassWithPropertiesBeingRemoved.php', |
|
49 | 49 | $locator |
50 | 50 | )))->reflect('RoaveTestAsset\\ClassWithPropertiesBeingRemoved'), |
51 | 51 | (new ClassReflector(new SingleFileSourceLocator( |
52 | - __DIR__ . '/../../../../asset/api/new/ClassWithPropertiesBeingRemoved.php', |
|
52 | + __DIR__.'/../../../../asset/api/new/ClassWithPropertiesBeingRemoved.php', |
|
53 | 53 | $locator |
54 | 54 | )))->reflect('RoaveTestAsset\\ClassWithPropertiesBeingRemoved'), |
55 | 55 | [ |
@@ -31,21 +31,21 @@ discard block |
||
31 | 31 | $this->output->writeln( |
32 | 32 | "# Added\n" |
33 | 33 | . implode('', $this->convertFilteredChangesToMarkdownBulletList( |
34 | - static function (Change $change) : bool { |
|
34 | + static function(Change $change) : bool { |
|
35 | 35 | return $change->isAdded(); |
36 | 36 | }, |
37 | 37 | ...$arrayOfChanges |
38 | 38 | )) |
39 | 39 | . "\n# Changed\n" |
40 | 40 | . implode('', $this->convertFilteredChangesToMarkdownBulletList( |
41 | - static function (Change $change) : bool { |
|
41 | + static function(Change $change) : bool { |
|
42 | 42 | return $change->isChanged(); |
43 | 43 | }, |
44 | 44 | ...$arrayOfChanges |
45 | 45 | )) |
46 | 46 | . "\n# Removed\n" |
47 | 47 | . implode('', $this->convertFilteredChangesToMarkdownBulletList( |
48 | - static function (Change $change) : bool { |
|
48 | + static function(Change $change) : bool { |
|
49 | 49 | return $change->isRemoved(); |
50 | 50 | }, |
51 | 51 | ...$arrayOfChanges |
@@ -57,8 +57,8 @@ discard block |
||
57 | 57 | private function convertFilteredChangesToMarkdownBulletList(callable $filterFunction, Change ...$changes) : array |
58 | 58 | { |
59 | 59 | return array_map( |
60 | - static function (Change $change) : string { |
|
61 | - return ' - ' . str_replace(['ADDED: ', 'CHANGED: ', 'REMOVED: '], '', trim($change->__toString())) . "\n"; |
|
60 | + static function(Change $change) : string { |
|
61 | + return ' - '.str_replace(['ADDED: ', 'CHANGED: ', 'REMOVED: '], '', trim($change->__toString()))."\n"; |
|
62 | 62 | }, |
63 | 63 | array_filter($changes, $filterFunction) |
64 | 64 | ); |
@@ -49,7 +49,7 @@ |
||
49 | 49 | $methods = $class->getMethods(); |
50 | 50 | |
51 | 51 | return array_combine( |
52 | - array_map(static function (ReflectionMethod $method) : string { |
|
52 | + array_map(static function(ReflectionMethod $method) : string { |
|
53 | 53 | return strtolower($method->getName()); |
54 | 54 | }, $methods), |
55 | 55 | $methods |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | $this->accessibleConstants($toClass) |
24 | 24 | ); |
25 | 25 | |
26 | - return Changes::fromList(...array_values(array_map(static function (ReflectionClassConstant $constant) use ($fromClass) : Change { |
|
26 | + return Changes::fromList(...array_values(array_map(static function(ReflectionClassConstant $constant) use ($fromClass) : Change { |
|
27 | 27 | return Change::removed( |
28 | 28 | sprintf('Constant %s::%s was removed', $fromClass->getName(), $constant->getName()), |
29 | 29 | true |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | /** @return ReflectionClassConstant[] */ |
35 | 35 | private function accessibleConstants(ReflectionClass $class) : array |
36 | 36 | { |
37 | - return array_filter($class->getReflectionConstants(), static function (ReflectionClassConstant $constant) : bool { |
|
37 | + return array_filter($class->getReflectionConstants(), static function(ReflectionClassConstant $constant) : bool { |
|
38 | 38 | return $constant->isPublic() || $constant->isProtected(); |
39 | 39 | }); |
40 | 40 | } |
@@ -23,11 +23,11 @@ discard block |
||
23 | 23 | $toMethods = $this->methods($toInterface); |
24 | 24 | $newMethods = array_diff_key($toMethods, $fromMethods); |
25 | 25 | |
26 | - if (! $newMethods) { |
|
26 | + if (!$newMethods) { |
|
27 | 27 | return Changes::empty(); |
28 | 28 | } |
29 | 29 | |
30 | - return Changes::fromList(...array_values(array_map(static function (ReflectionMethod $method) use ( |
|
30 | + return Changes::fromList(...array_values(array_map(static function(ReflectionMethod $method) use ( |
|
31 | 31 | $fromInterface |
32 | 32 | ) : Change { |
33 | 33 | return Change::added( |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | $methods = $interface->getMethods(); |
48 | 48 | |
49 | 49 | return array_combine( |
50 | - array_map(static function (ReflectionMethod $method) : string { |
|
50 | + array_map(static function(ReflectionMethod $method) : string { |
|
51 | 51 | return strtolower($method->getName()); |
52 | 52 | }, $methods), |
53 | 53 | $methods |
@@ -32,11 +32,11 @@ discard block |
||
32 | 32 | use Symfony\Component\Console\Output\ConsoleOutput; |
33 | 33 | use function file_exists; |
34 | 34 | |
35 | -(static function () : void { |
|
36 | - (static function () : void { |
|
35 | +(static function() : void { |
|
36 | + (static function() : void { |
|
37 | 37 | $autoloaderLocations = [ |
38 | - __DIR__ . '/../vendor/autoload.php', // Installed by cloning the project and running `composer install` |
|
39 | - __DIR__ . '/../../../autoload.php', // Installed via `composer require` |
|
38 | + __DIR__.'/../vendor/autoload.php', // Installed by cloning the project and running `composer install` |
|
39 | + __DIR__.'/../../../autoload.php', // Installed via `composer require` |
|
40 | 40 | ]; |
41 | 41 | |
42 | 42 | foreach ($autoloaderLocations as $autoload) { |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | new GetVersionCollectionFromGitRepository(), |
66 | 66 | new PickLastMinorVersionFromCollection(), |
67 | 67 | new LocateDependenciesViaComposer( |
68 | - static function (string $installationPath) use ($composerIo) : Installer { |
|
68 | + static function(string $installationPath) use ($composerIo) : Installer { |
|
69 | 69 | return Installer::create( |
70 | 70 | $composerIo, |
71 | 71 | (new Factory())->createComposer( |
@@ -29,7 +29,7 @@ |
||
29 | 29 | { |
30 | 30 | $reflector = new ClassReflector( |
31 | 31 | $this->locateSources |
32 | - ->__invoke(__DIR__ . '/../../asset/located-sources/composer-definition-with-everything') |
|
32 | + ->__invoke(__DIR__.'/../../asset/located-sources/composer-definition-with-everything') |
|
33 | 33 | ); |
34 | 34 | |
35 | 35 | self::assertSame( |