Passed
Pull Request — master (#250)
by
unknown
12:18 queued 09:11
created
unit/DetectChanges/BCBreak/MethodBased/MethodConcretenessChangedTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
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
         );
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
             array_keys($properties),
129 129
             array_map(
130 130
                 /** @psalm-param list<string> $errorMessages https://github.com/vimeo/psalm/issues/2772 */
131
-                static function (string $methodName, array $errorMessages) use ($fromClass, $toClass) : array {
131
+                static function(string $methodName, array $errorMessages) use ($fromClass, $toClass) : array {
132 132
                     return [
133 133
                         $fromClass->getMethod($methodName),
134 134
                         $toClass->getMethod($methodName),
Please login to merge, or discard this patch.
src/SourceLocator/StaticClassMapSourceLocator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 
40 40
     protected function createLocatedSource(Identifier $identifier) : ?LocatedSource
41 41
     {
42
-        if (! $identifier->isClass()) {
42
+        if (!$identifier->isClass()) {
43 43
             return null;
44 44
         }
45 45
 
Please login to merge, or discard this patch.