@@ -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\Formatter; |
| 5 | 5 | |
@@ -27,21 +27,21 @@ discard block |
||
| 27 | 27 | $this->output->writeln( |
| 28 | 28 | "# Added\n" |
| 29 | 29 | . implode('', $this->convertFilteredChangesToMarkdownBulletList( |
| 30 | - function (Change $change) : bool { |
|
| 30 | + function(Change $change) : bool { |
|
| 31 | 31 | return $change->isAdded(); |
| 32 | 32 | }, |
| 33 | 33 | ...$arrayOfChanges |
| 34 | 34 | )) |
| 35 | 35 | . "\n# Changed\n" |
| 36 | 36 | . implode('', $this->convertFilteredChangesToMarkdownBulletList( |
| 37 | - function (Change $change) : bool { |
|
| 37 | + function(Change $change) : bool { |
|
| 38 | 38 | return $change->isChanged(); |
| 39 | 39 | }, |
| 40 | 40 | ...$arrayOfChanges |
| 41 | 41 | )) |
| 42 | 42 | . "\n# Removed\n" |
| 43 | 43 | . implode('', $this->convertFilteredChangesToMarkdownBulletList( |
| 44 | - function (Change $change) : bool { |
|
| 44 | + function(Change $change) : bool { |
|
| 45 | 45 | return $change->isRemoved(); |
| 46 | 46 | }, |
| 47 | 47 | ...$arrayOfChanges |
@@ -52,8 +52,8 @@ discard block |
||
| 52 | 52 | private function convertFilteredChangesToMarkdownBulletList(callable $filterFunction, Change ...$changes) : array |
| 53 | 53 | { |
| 54 | 54 | return array_map( |
| 55 | - function (Change $change) : string { |
|
| 56 | - return ' - ' . str_replace(['ADDED: ', 'CHANGED: ', 'REMOVED: '], '', trim((string)$change)) . "\n"; |
|
| 55 | + function(Change $change) : string { |
|
| 56 | + return ' - '.str_replace(['ADDED: ', 'CHANGED: ', 'REMOVED: '], '', trim((string) $change))."\n"; |
|
| 57 | 57 | }, |
| 58 | 58 | array_filter($changes, $filterFunction) |
| 59 | 59 | ); |
@@ -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\Command; |
| 6 | 6 | |
@@ -113,21 +113,21 @@ discard block |
||
| 113 | 113 | $toRevision = $this->parseRevision->fromStringForRepository($input->getOption('to'), $sourceRepo); |
| 114 | 114 | $sourcesPath = $input->getArgument('sources-path'); |
| 115 | 115 | |
| 116 | - $stdErr->writeln(sprintf('Comparing from %s to %s...', (string)$fromRevision, (string)$toRevision)); |
|
| 116 | + $stdErr->writeln(sprintf('Comparing from %s to %s...', (string) $fromRevision, (string) $toRevision)); |
|
| 117 | 117 | |
| 118 | 118 | $fromPath = $this->git->checkout($sourceRepo, $fromRevision); |
| 119 | 119 | $toPath = $this->git->checkout($sourceRepo, $toRevision); |
| 120 | 120 | |
| 121 | 121 | try { |
| 122 | - $fromSources = $fromPath . '/' . $sourcesPath; |
|
| 123 | - $toSources = $toPath . '/' . $sourcesPath; |
|
| 122 | + $fromSources = $fromPath.'/'.$sourcesPath; |
|
| 123 | + $toSources = $toPath.'/'.$sourcesPath; |
|
| 124 | 124 | |
| 125 | 125 | Assert::that($fromSources)->directory(); |
| 126 | 126 | Assert::that($toSources)->directory(); |
| 127 | 127 | |
| 128 | 128 | $changes = $this->comparator->compare( |
| 129 | - $this->reflectorFactory->__invoke((string) $fromPath . '/' . $sourcesPath), |
|
| 130 | - $this->reflectorFactory->__invoke((string) $toPath . '/' . $sourcesPath) |
|
| 129 | + $this->reflectorFactory->__invoke((string) $fromPath.'/'.$sourcesPath), |
|
| 130 | + $this->reflectorFactory->__invoke((string) $toPath.'/'.$sourcesPath) |
|
| 131 | 131 | ); |
| 132 | 132 | |
| 133 | 133 | (new SymfonyConsoleTextFormatter($stdErr))->write($changes); |
@@ -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 | |
@@ -211,7 +211,7 @@ discard block |
||
| 211 | 211 | return array_merge( |
| 212 | 212 | [[null]], |
| 213 | 213 | array_merge(...array_map( |
| 214 | - function (string $type) use ($reflector) : array { |
|
| 214 | + function(string $type) use ($reflector) : array { |
|
| 215 | 215 | return [ |
| 216 | 216 | [ReflectionType::createFromTypeAndReflector($type, false, $reflector)], |
| 217 | 217 | [ReflectionType::createFromTypeAndReflector($type, true, $reflector)], |
@@ -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\ClassConstantBased; |
| 6 | 6 | |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | self::assertSame( |
| 36 | 36 | $expectedMessages, |
| 37 | - array_map(function (Change $change) : string { |
|
| 37 | + array_map(function(Change $change) : string { |
|
| 38 | 38 | return $change->__toString(); |
| 39 | 39 | }, iterator_to_array($changes)) |
| 40 | 40 | ); |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | return array_combine( |
| 113 | 113 | array_keys($properties), |
| 114 | 114 | array_map( |
| 115 | - function (string $constant, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 115 | + function(string $constant, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 116 | 116 | return [ |
| 117 | 117 | $fromClass->getReflectionConstant($constant), |
| 118 | 118 | $toClass->getReflectionConstant($constant), |
@@ -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\ClassConstantBased; |
| 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 @@ |
||
| 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 | |
@@ -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\InterfaceBased; |
| 6 | 6 | |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | self::assertSame( |
| 33 | 33 | $expectedMessages, |
| 34 | - array_map(function (Change $change) : string { |
|
| 34 | + array_map(function(Change $change) : string { |
|
| 35 | 35 | return $change->__toString(); |
| 36 | 36 | }, iterator_to_array($changes)) |
| 37 | 37 | ); |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | return array_combine( |
| 105 | 105 | array_keys($properties), |
| 106 | 106 | array_map( |
| 107 | - function (string $className, array $errorMessages) use ($fromClassReflector, $toClassReflector |
|
| 107 | + function(string $className, array $errorMessages) use ($fromClassReflector, $toClassReflector |
|
| 108 | 108 | ) : array { |
| 109 | 109 | return [ |
| 110 | 110 | $fromClassReflector->reflect($className), |
@@ -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\PropertyBased; |
| 6 | 6 | |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | self::assertSame( |
| 36 | 36 | $expectedMessages, |
| 37 | - array_map(function (Change $change) : string { |
|
| 37 | + array_map(function(Change $change) : string { |
|
| 38 | 38 | return $change->__toString(); |
| 39 | 39 | }, iterator_to_array($changes)) |
| 40 | 40 | ); |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | return array_combine( |
| 145 | 145 | array_keys($properties), |
| 146 | 146 | array_map( |
| 147 | - function (string $property, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 147 | + function(string $property, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 148 | 148 | return [ |
| 149 | 149 | $fromClass->getProperty($property), |
| 150 | 150 | $toClass->getProperty($property), |