Completed
Push — master ( aade61...927b5a )
by Marco
43s queued 41s
created
test/unit/DetectChanges/BCBreak/ClassBased/ExcludeInternalClassTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,9 +33,9 @@
 block discarded – undo
33 33
 
34 34
         $check = $this->createMock(ClassBased::class);
35 35
         $check->expects(self::once())
36
-              ->method('__invoke')
37
-              ->with($fromReflection, $toReflection)
38
-              ->willReturn(Changes::fromList(Change::removed('foo', true)));
36
+                ->method('__invoke')
37
+                ->with($fromReflection, $toReflection)
38
+                ->willReturn(Changes::fromList(Change::removed('foo', true)));
39 39
 
40 40
         self::assertEquals(
41 41
             Changes::fromList(Change::removed('foo', true)),
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.