Completed
Branch master (e02bf6)
by Tobias
03:32
created
Category
Chain.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
Tests/ChainTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.