@@ -30,7 +30,7 @@ public function testGetReversedData()
3030 $ mockOne = $ this ->getMock ('Geocoder \\Provider \\ProviderInterface ' );
3131 $ mockOne ->expects ($ this ->once ())
3232 ->method ('getReversedData ' )
33- ->will ($ this ->returnCallback (function () { throw new \Exception ; }));
33+ ->will ($ this ->returnCallback (function () { throw new \Exception ; }));
3434
3535 $ mockTwo = $ this ->getMock ('Geocoder \\Provider \\ProviderInterface ' );
3636 $ mockTwo ->expects ($ this ->once ())
@@ -48,7 +48,7 @@ public function testChainProviderReverseThrowsChainNoResultException()
4848 $ mockOne = $ this ->getMock ('Geocoder \\Provider \\ProviderInterface ' );
4949 $ mockOne ->expects ($ this ->exactly (2 ))
5050 ->method ('getReversedData ' )
51- ->will ($ this ->returnCallback (function () { throw new \Exception ; }));
51+ ->will ($ this ->returnCallback (function () { throw new \Exception ; }));
5252
5353 $ chain = new ChainProvider (array ($ mockOne , $ mockOne ));
5454
@@ -64,7 +64,7 @@ public function testGetGeocodedData()
6464 $ mockOne = $ this ->getMock ('Geocoder \\Provider \\ProviderInterface ' );
6565 $ mockOne ->expects ($ this ->once ())
6666 ->method ('getGeocodedData ' )
67- ->will ($ this ->returnCallback (function () { throw new \Exception ; }));
67+ ->will ($ this ->returnCallback (function () { throw new \Exception ; }));
6868
6969 $ mockTwo = $ this ->getMock ('Geocoder \\Provider \\ProviderInterface ' );
7070 $ mockTwo ->expects ($ this ->once ())
@@ -82,7 +82,7 @@ public function testChainProviderGeocodeThrowsChainNoResultException()
8282 $ mockOne = $ this ->getMock ('Geocoder \\Provider \\ProviderInterface ' );
8383 $ mockOne ->expects ($ this ->exactly (2 ))
8484 ->method ('getGeocodedData ' )
85- ->will ($ this ->returnCallback (function () { throw new \Exception ; }));
85+ ->will ($ this ->returnCallback (function () { throw new \Exception ; }));
8686
8787 $ chain = new ChainProvider (array ($ mockOne , $ mockOne ));
8888
0 commit comments