Skip to content

Commit 07a78f3

Browse files
committed
Bring PHPCI to green
1 parent b38a86d commit 07a78f3

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/ProviderAndDumperAggregator.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
use Geocoder\ProviderAggregator;
2222
use Illuminate\Support\Collection;
2323

24+
/**
25+
* @SuppressWarnings(PHPMD.TooManyPublicMethods)
26+
*/
2427
class ProviderAndDumperAggregator
2528
{
2629
protected $aggregator;

tests/Laravel5_3/Providers/GeocoderServiceTest.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
use Http\Adapter\Guzzle6\Client as GuzzleAdaptor;
1515
use Illuminate\Support\Collection;
1616

17+
/**
18+
* @SuppressWarnings(PHPMD.TooManyPublicMethods)
19+
*/
1720
class GeocoderServiceTest extends TestCase
1821
{
1922
public function setUp()
@@ -171,6 +174,9 @@ public function testCacheIsUsed()
171174
$this->assertEquals($result, cache($cacheKey));
172175
}
173176

177+
/**
178+
* @SuppressWarnings(PHPMD.StaticAccess)
179+
*/
174180
public function testGeocodeQueryProvidesResults()
175181
{
176182
$query = GeocodeQuery::create('1600 Pennsylvania Ave., Washington, DC USA');
@@ -180,6 +186,9 @@ public function testGeocodeQueryProvidesResults()
180186
$this->assertInstanceOf(Collection::class, $results);
181187
}
182188

189+
/**
190+
* @SuppressWarnings(PHPMD.StaticAccess)
191+
*/
183192
public function testReverseQueryProvidesResults()
184193
{
185194
$coordinates = new Coordinates(38.8791981, -76.9818437);

0 commit comments

Comments
 (0)