@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | |
| 37 | 37 | self::assertSame( |
| 38 | 38 | $expectedMessages, |
| 39 | - array_map(function (Change $change) : string { |
|
| 39 | + array_map(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 | - function (string $method, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 111 | + function(string $method, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 112 | 112 | return [ |
| 113 | 113 | $fromClass->getMethod($method), |
| 114 | 114 | $toClass->getMethod($method), |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | |
| 37 | 37 | self::assertSame( |
| 38 | 38 | $expectedMessages, |
| 39 | - array_map(function (Change $change) : string { |
|
| 39 | + array_map(function(Change $change) : string { |
|
| 40 | 40 | return $change->__toString(); |
| 41 | 41 | }, iterator_to_array($changes)) |
| 42 | 42 | ); |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | return array_combine( |
| 123 | 123 | array_keys($properties), |
| 124 | 124 | array_map( |
| 125 | - function (string $methodName, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 125 | + function(string $methodName, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 126 | 126 | return [ |
| 127 | 127 | $fromClass->getMethod($methodName), |
| 128 | 128 | $toClass->getMethod($methodName), |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | |
| 37 | 37 | self::assertSame( |
| 38 | 38 | $expectedMessages, |
| 39 | - array_map(function (Change $change) : string { |
|
| 39 | + array_map(function(Change $change) : string { |
|
| 40 | 40 | return $change->__toString(); |
| 41 | 41 | }, iterator_to_array($changes)) |
| 42 | 42 | ); |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | return array_combine( |
| 123 | 123 | array_keys($properties), |
| 124 | 124 | array_map( |
| 125 | - function (string $methodName, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 125 | + function(string $methodName, array $errorMessages) use ($fromClass, $toClass) : array { |
|
| 126 | 126 | return [ |
| 127 | 127 | $fromClass->getMethod($methodName), |
| 128 | 128 | $toClass->getMethod($methodName), |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | self::assertSame( |
| 35 | 35 | $expectedMessages, |
| 36 | - array_map(function (Change $change) : string { |
|
| 36 | + array_map(function(Change $change) : string { |
|
| 37 | 37 | return $change->__toString(); |
| 38 | 38 | }, iterator_to_array($changes)) |
| 39 | 39 | ); |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | , |
| 64 | 64 | $locator |
| 65 | 65 | )); |
| 66 | - $toReflector = new ClassReflector(new StringSourceLocator( |
|
| 66 | + $toReflector = new ClassReflector(new StringSourceLocator( |
|
| 67 | 67 | <<<'PHP' |
| 68 | 68 | <?php |
| 69 | 69 | |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | return array_combine( |
| 103 | 103 | array_keys($classes), |
| 104 | 104 | array_map( |
| 105 | - function (string $className, array $errors) use ($fromReflector, $toReflector) : array { |
|
| 105 | + function(string $className, array $errors) use ($fromReflector, $toReflector) : array { |
|
| 106 | 106 | return [ |
| 107 | 107 | $fromReflector->reflect($className), |
| 108 | 108 | $toReflector->reflect($className), |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | self::assertSame( |
| 35 | 35 | $expectedMessages, |
| 36 | - array_map(function (Change $change) : string { |
|
| 36 | + array_map(function(Change $change) : string { |
|
| 37 | 37 | return $change->__toString(); |
| 38 | 38 | }, iterator_to_array($changes)) |
| 39 | 39 | ); |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | , |
| 64 | 64 | $locator |
| 65 | 65 | )); |
| 66 | - $toReflector = new ClassReflector(new StringSourceLocator( |
|
| 66 | + $toReflector = new ClassReflector(new StringSourceLocator( |
|
| 67 | 67 | <<<'PHP' |
| 68 | 68 | <?php |
| 69 | 69 | |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | return array_combine( |
| 103 | 103 | array_keys($classes), |
| 104 | 104 | array_map( |
| 105 | - function (string $className, array $errors) use ($fromReflector, $toReflector) : array { |
|
| 105 | + function(string $className, array $errors) use ($fromReflector, $toReflector) : array { |
|
| 106 | 106 | return [ |
| 107 | 107 | $fromReflector->reflect($className), |
| 108 | 108 | $toReflector->reflect($className), |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | self::assertSame( |
| 35 | 35 | $expectedMessages, |
| 36 | - array_map(function (Change $change) : string { |
|
| 36 | + array_map(function(Change $change) : string { |
|
| 37 | 37 | return $change->__toString(); |
| 38 | 38 | }, iterator_to_array($changes)) |
| 39 | 39 | ); |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | return array_combine( |
| 107 | 107 | array_keys($properties), |
| 108 | 108 | array_map( |
| 109 | - function (string $className, array $errorMessages) use ($fromClassReflector, $toClassReflector |
|
| 109 | + function(string $className, array $errorMessages) use ($fromClassReflector, $toClassReflector |
|
| 110 | 110 | ) : array { |
| 111 | 111 | return [ |
| 112 | 112 | $fromClassReflector->reflect($className), |
@@ -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), |
@@ -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), |
@@ -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 | ); |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | , |
| 54 | 54 | $locator |
| 55 | 55 | )); |
| 56 | - $toReflector = new ClassReflector(new StringSourceLocator( |
|
| 56 | + $toReflector = new ClassReflector(new StringSourceLocator( |
|
| 57 | 57 | <<<'PHP' |
| 58 | 58 | <?php |
| 59 | 59 | |