@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | self::assertSame( |
| 39 | 39 | $expectedMessages, |
| 40 | - array_map(static function (Change $change) : string { |
|
| 40 | + array_map(static function(Change $change) : string { |
|
| 41 | 41 | return $change->__toString(); |
| 42 | 42 | }, iterator_to_array($changes)) |
| 43 | 43 | ); |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | return array_combine( |
| 124 | 124 | array_keys($properties), |
| 125 | 125 | array_map( |
| 126 | - static function (string $methodName, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 126 | + static function(string $methodName, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 127 | 127 | return [ |
| 128 | 128 | $fromClass->getMethod($methodName), |
| 129 | 129 | $toClass->getMethod($methodName), |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | |
| 37 | 37 | self::assertSame( |
| 38 | 38 | $expectedMessages, |
| 39 | - array_map(static function (Change $change) : string { |
|
| 39 | + array_map(static function(Change $change) : string { |
|
| 40 | 40 | return $change->__toString(); |
| 41 | 41 | }, iterator_to_array($changes)) |
| 42 | 42 | ); |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | return array_combine( |
| 109 | 109 | array_keys($properties), |
| 110 | 110 | array_map( |
| 111 | - static function (string $method, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 111 | + static function(string $method, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 112 | 112 | return [ |
| 113 | 113 | $fromClass->getMethod($method), |
| 114 | 114 | $toClass->getMethod($method), |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | self::assertSame( |
| 39 | 39 | $expectedMessages, |
| 40 | - array_map(static function (Change $change) : string { |
|
| 40 | + array_map(static function(Change $change) : string { |
|
| 41 | 41 | return $change->__toString(); |
| 42 | 42 | }, iterator_to_array($changes)) |
| 43 | 43 | ); |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | return array_combine( |
| 124 | 124 | array_keys($properties), |
| 125 | 125 | array_map( |
| 126 | - static function (string $methodName, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 126 | + static function(string $methodName, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 127 | 127 | return [ |
| 128 | 128 | $fromClass->getMethod($methodName), |
| 129 | 129 | $toClass->getMethod($methodName), |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | self::assertSame( |
| 39 | 39 | $expectedMessages, |
| 40 | - array_map(static function (Change $change) : string { |
|
| 40 | + array_map(static function(Change $change) : string { |
|
| 41 | 41 | return $change->__toString(); |
| 42 | 42 | }, iterator_to_array($changes)) |
| 43 | 43 | ); |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | return array_combine( |
| 122 | 122 | array_keys($properties), |
| 123 | 123 | array_map( |
| 124 | - static function (string $constant, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 124 | + static function(string $constant, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 125 | 125 | return [ |
| 126 | 126 | $fromClass->getReflectionConstant($constant), |
| 127 | 127 | $toClass->getReflectionConstant($constant), |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | return array_merge( |
| 225 | 225 | [[null]], |
| 226 | 226 | array_merge(...array_map( |
| 227 | - static function (string $type) use ($reflector) : array { |
|
| 227 | + static function(string $type) use ($reflector) : array { |
|
| 228 | 228 | return [ |
| 229 | 229 | [ReflectionType::createFromTypeAndReflector($type, false, $reflector)], |
| 230 | 230 | [ReflectionType::createFromTypeAndReflector($type, true, $reflector)], |
@@ -248,7 +248,7 @@ discard block |
||
| 248 | 248 | /** @dataProvider existingNullableTypeStrings */ |
| 249 | 249 | public function testContravarianceConsidersNullability(string $type) : void |
| 250 | 250 | { |
| 251 | - $reflector = new ClassReflector(new StringSourceLocator( |
|
| 251 | + $reflector = new ClassReflector(new StringSourceLocator( |
|
| 252 | 252 | <<<'PHP' |
| 253 | 253 | <?php |
| 254 | 254 | |
@@ -235,7 +235,7 @@ discard block |
||
| 235 | 235 | return array_merge( |
| 236 | 236 | [[null]], |
| 237 | 237 | array_merge(...array_map( |
| 238 | - static function (string $type) use ($reflector) : array { |
|
| 238 | + static function(string $type) use ($reflector) : array { |
|
| 239 | 239 | return [ |
| 240 | 240 | [ReflectionType::createFromTypeAndReflector($type, false, $reflector)], |
| 241 | 241 | [ReflectionType::createFromTypeAndReflector($type, true, $reflector)], |
@@ -259,7 +259,7 @@ discard block |
||
| 259 | 259 | /** @dataProvider existingNullableTypeStrings */ |
| 260 | 260 | public function testCovarianceConsidersNullability(string $type) : void |
| 261 | 261 | { |
| 262 | - $reflector = new ClassReflector(new StringSourceLocator( |
|
| 262 | + $reflector = new ClassReflector(new StringSourceLocator( |
|
| 263 | 263 | <<<'PHP' |
| 264 | 264 | <?php |
| 265 | 265 | |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | |
| 76 | 76 | public function setUp() : void |
| 77 | 77 | { |
| 78 | - $repositoryPath = realpath(__DIR__ . '/../../../'); |
|
| 78 | + $repositoryPath = realpath(__DIR__.'/../../../'); |
|
| 79 | 79 | |
| 80 | 80 | self::assertInternalType('string', $repositoryPath); |
| 81 | 81 | |
@@ -274,7 +274,7 @@ discard block |
||
| 274 | 274 | |
| 275 | 275 | $this->output->expects(self::any()) |
| 276 | 276 | ->method('writeln') |
| 277 | - ->willReturnCallback(static function (string $output) use ($changeToExpect) : void { |
|
| 277 | + ->willReturnCallback(static function(string $output) use ($changeToExpect) : void { |
|
| 278 | 278 | self::assertContains($changeToExpect, $output); |
| 279 | 279 | }); |
| 280 | 280 | } |
@@ -358,7 +358,7 @@ discard block |
||
| 358 | 358 | |
| 359 | 359 | $this->getVersions->expects(self::once()) |
| 360 | 360 | ->method('fromRepository') |
| 361 | - ->with(self::callback(function (CheckedOutRepository $checkedOutRepository) : bool { |
|
| 361 | + ->with(self::callback(function(CheckedOutRepository $checkedOutRepository) : bool { |
|
| 362 | 362 | self::assertEquals($this->sourceRepository, $checkedOutRepository); |
| 363 | 363 | return true; |
| 364 | 364 | })) |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | ->getOutput(); |
| 33 | 33 | |
| 34 | 34 | return new VersionsCollection(...array_filter( |
| 35 | - array_map(static function (string $maybeVersion) : ?Version { |
|
| 35 | + array_map(static function(string $maybeVersion) : ?Version { |
|
| 36 | 36 | try { |
| 37 | 37 | return Version::fromString($maybeVersion); |
| 38 | 38 | } catch (InvalidVersionStringException $e) { |
@@ -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 | ); |