Completed
Push — master ( 85853a...5df06c )
by James
20s queued 12s
created
test/unit/DetectChanges/BCBreak/TraitBased/ExcludeInternalTraitTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,9 +32,9 @@
 block discarded – undo
32 32
 
33 33
         $check = $this->createMock(TraitBased::class);
34 34
         $check->expects(self::once())
35
-              ->method('__invoke')
36
-              ->with($reflection, $reflection)
37
-              ->willReturn(Changes::fromList(Change::removed('foo', true)));
35
+                ->method('__invoke')
36
+                ->with($reflection, $reflection)
37
+                ->willReturn(Changes::fromList(Change::removed('foo', true)));
38 38
 
39 39
         self::assertEquals(
40 40
             Changes::fromList(Change::removed('foo', true)),
Please login to merge, or discard this patch.
test/unit/DetectChanges/BCBreak/ClassBased/ExcludeInternalClassTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,9 +35,9 @@
 block discarded – undo
35 35
         /** @var ClassBased&MockObject $check */
36 36
         $check = $this->createMock(ClassBased::class);
37 37
         $check->expects(self::once())
38
-              ->method('__invoke')
39
-              ->with($fromReflection, $toReflection)
40
-              ->willReturn(Changes::fromList(Change::removed('foo', true)));
38
+                ->method('__invoke')
39
+                ->with($fromReflection, $toReflection)
40
+                ->willReturn(Changes::fromList(Change::removed('foo', true)));
41 41
 
42 42
         self::assertEquals(
43 43
             Changes::fromList(Change::removed('foo', true)),
Please login to merge, or discard this patch.
unit/DetectChanges/BCBreak/InterfaceBased/ExcludeInternalInterfaceTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,9 +32,9 @@
 block discarded – undo
32 32
 
33 33
         $check = $this->createMock(InterfaceBased::class);
34 34
         $check->expects(self::once())
35
-              ->method('__invoke')
36
-              ->with($reflection, $reflection)
37
-              ->willReturn(Changes::fromList(Change::removed('foo', true)));
35
+                ->method('__invoke')
36
+                ->with($reflection, $reflection)
37
+                ->willReturn(Changes::fromList(Change::removed('foo', true)));
38 38
 
39 39
         self::assertEquals(
40 40
             Changes::fromList(Change::removed('foo', true)),
Please login to merge, or discard this patch.
unit/DetectChanges/BCBreak/FunctionBased/ExcludeInternalFunctionTest.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -33,9 +33,9 @@  discard block
 block discarded – undo
33 33
 
34 34
         $check = $this->createMock(FunctionBased::class);
35 35
         $check->expects(self::once())
36
-              ->method('__invoke')
37
-              ->with($function, $function)
38
-              ->willReturn(Changes::fromList(Change::removed('foo', true)));
36
+                ->method('__invoke')
37
+                ->with($function, $function)
38
+                ->willReturn(Changes::fromList(Change::removed('foo', true)));
39 39
 
40 40
         self::assertEquals(
41 41
             Changes::fromList(Change::removed('foo', true)),
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
         $check = $this->createMock(FunctionBased::class);
63 63
         $check->expects(self::never())
64
-              ->method('__invoke');
64
+                ->method('__invoke');
65 65
 
66 66
         self::assertEquals(
67 67
             Changes::empty(),
Please login to merge, or discard this patch.
unit/DetectChanges/BCBreak/PropertyBased/ExcludeInternalPropertyTest.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,9 +36,9 @@  discard block
 block discarded – undo
36 36
 
37 37
         $check = $this->createMock(PropertyBased::class);
38 38
         $check->expects(self::once())
39
-              ->method('__invoke')
40
-              ->with($property, $property)
41
-              ->willReturn(Changes::fromList(Change::removed('foo', true)));
39
+                ->method('__invoke')
40
+                ->with($property, $property)
41
+                ->willReturn(Changes::fromList(Change::removed('foo', true)));
42 42
 
43 43
         self::assertEquals(
44 44
             Changes::fromList(Change::removed('foo', true)),
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
         $check = $this->createMock(PropertyBased::class);
70 70
         $check->expects(self::never())
71
-              ->method('__invoke');
71
+                ->method('__invoke');
72 72
 
73 73
         self::assertEquals(
74 74
             Changes::empty(),
Please login to merge, or discard this patch.
test/unit/DetectChanges/BCBreak/MethodBased/ExcludeInternalMethodTest.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,9 +34,9 @@  discard block
 block discarded – undo
34 34
 
35 35
         $check = $this->createMock(MethodBased::class);
36 36
         $check->expects(self::once())
37
-              ->method('__invoke')
38
-              ->with($method, $method)
39
-              ->willReturn(Changes::fromList(Change::removed('foo', true)));
37
+                ->method('__invoke')
38
+                ->with($method, $method)
39
+                ->willReturn(Changes::fromList(Change::removed('foo', true)));
40 40
 
41 41
         self::assertEquals(
42 42
             Changes::fromList(Change::removed('foo', true)),
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 
65 65
         $check = $this->createMock(MethodBased::class);
66 66
         $check->expects(self::never())
67
-              ->method('__invoke');
67
+                ->method('__invoke');
68 68
 
69 69
         self::assertEquals(
70 70
             Changes::empty(),
Please login to merge, or discard this patch.