@@ -60,7 +60,7 @@ |
||
60 | 60 | ->given($visiteeMock = $this->newMockVisiteeInterface()) |
61 | 61 | ->calling($visiteeMock) |
62 | 62 | ->methods( |
63 | - function ($method) use ($shouldVisitMethod) { |
|
63 | + function($method) use ($shouldVisitMethod) { |
|
64 | 64 | return $method === \strtolower($shouldVisitMethod); |
65 | 65 | } |
66 | 66 | ) |
@@ -27,7 +27,7 @@ |
||
27 | 27 | /* @var \Cubiche\Core\Visitor\VisitorInterface $visitor */ |
28 | 28 | ->given($visitor = $this->newDefaultTestedInstance()) |
29 | 29 | ->given($visiteeMock = $this->newMockInstance(VisiteeInterface::class)) |
30 | - ->exception(function () use ($visitor, $visiteeMock) { |
|
30 | + ->exception(function() use ($visitor, $visiteeMock) { |
|
31 | 31 | $visitor->visit($visiteeMock); |
32 | 32 | }) |
33 | 33 | ->isInstanceOf(\LogicException::class) |
@@ -48,7 +48,7 @@ |
||
48 | 48 | ->given($visitorMock, $shouldVisitMethod, $acceptVisitorMethod) |
49 | 49 | ->calling($visitorMock) |
50 | 50 | ->methods( |
51 | - function ($method) use ($shouldVisitMethod) { |
|
51 | + function($method) use ($shouldVisitMethod) { |
|
52 | 52 | return $method === \strtolower($shouldVisitMethod); |
53 | 53 | } |
54 | 54 | ) |