@@ -40,7 +40,7 @@ |
||
| 40 | 40 | ->given($visiteeMock = $this->newMockInstance(VisiteeInterface::class)) |
| 41 | 41 | /* @var \Cubiche\Core\Visitor\VisitorInterface $visitor */ |
| 42 | 42 | ->given($visitor = $this->newDefaultTestedInstance()) |
| 43 | - ->exception(function () use ($visitor, $visiteeMock) { |
|
| 43 | + ->exception(function() use ($visitor, $visiteeMock) { |
|
| 44 | 44 | $visitor->visit($visiteeMock); |
| 45 | 45 | }) |
| 46 | 46 | ->isInstanceOf(\LogicException::class) |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | ->given($visitorMock, $shouldVisitMethod) |
| 48 | 48 | ->calling($visitorMock) |
| 49 | 49 | ->methods( |
| 50 | - function ($method) use ($shouldVisitMethod) { |
|
| 50 | + function($method) use ($shouldVisitMethod) { |
|
| 51 | 51 | return $method === \strtolower($shouldVisitMethod); |
| 52 | 52 | } |
| 53 | 53 | ) |