@@ -33,9 +33,9 @@ |
||
| 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)), |
@@ -39,7 +39,7 @@ |
||
| 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 | |