@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * This file is part of the Geocoder package. |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * This file is part of the Geocoder package. |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | $mockOne = $this->getMockBuilder(Provider::class)->getMock(); |
44 | 44 | $mockOne->expects($this->once()) |
45 | 45 | ->method('reverseQuery') |
46 | - ->will($this->returnCallback(function () { |
|
46 | + ->will($this->returnCallback(function() { |
|
47 | 47 | throw new \Exception(); |
48 | 48 | })); |
49 | 49 | |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | $mockOne = $this->getMockBuilder('Geocoder\\Provider\\Provider')->getMock(); |
65 | 65 | $mockOne->expects($this->once()) |
66 | 66 | ->method('geocodeQuery') |
67 | - ->will($this->returnCallback(function () { |
|
67 | + ->will($this->returnCallback(function() { |
|
68 | 68 | throw new \Exception(); |
69 | 69 | })); |
70 | 70 |