Skip to content

Commit 687fd76

Browse files
committed
Fix CS
1 parent 0c334f3 commit 687fd76

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Provider/Photon/Tests/PhotonTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function testGeocodeQuery(): void
6060
$this->assertInstanceOf('Geocoder\Model\AddressCollection', $results);
6161
$this->assertCount(1, $results);
6262

63-
/** @var \Geocoder\Provider\Photon\Model\PhotonAddress $result */
63+
/** @var PhotonAddress $result */
6464
$result = $results->first();
6565
$this->assertInstanceOf('\Geocoder\Model\Address', $result);
6666
$this->assertEqualsWithDelta(48.8631927, $result->getCoordinates()->getLatitude(), 0.00001);
@@ -89,7 +89,7 @@ public function testGeocodeQueryWithNamedResult(): void
8989
$this->assertInstanceOf('Geocoder\Model\AddressCollection', $results);
9090
$this->assertCount(1, $results);
9191

92-
/** @var \Geocoder\Provider\Photon\Model\PhotonAddress $result */
92+
/** @var PhotonAddress $result */
9393
$result = $results->first();
9494

9595
$this->assertEquals('The Sherlock Holmes Museum and shop', $result->getName());
@@ -136,7 +136,7 @@ public function testReverseQuery(): void
136136
$this->assertInstanceOf('Geocoder\Model\AddressCollection', $results);
137137
$this->assertCount(1, $results);
138138

139-
/** @var \Geocoder\Provider\Photon\Model\PhotonAddress $result */
139+
/** @var PhotonAddress $result */
140140
$result = $results->first();
141141
$this->assertInstanceOf('\Geocoder\Model\Address', $result);
142142
$this->assertEqualsWithDelta(51.9982968, $result->getCoordinates()->getLatitude(), 0.00001);

0 commit comments

Comments
 (0)