Skip to content

Commit 6253fd8

Browse files
authored
Merge pull request #215 from maxmind/horgh/lint
Run new php-cs-fixer
2 parents b088f1f + cae01a2 commit 6253fd8

File tree

6 files changed

+12
-18
lines changed

6 files changed

+12
-18
lines changed

src/Exception/AddressNotFoundException.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@
77
/**
88
* This class represents a generic error.
99
*/
10-
class AddressNotFoundException extends GeoIp2Exception
11-
{
12-
}
10+
// phpcs:disable
11+
class AddressNotFoundException extends GeoIp2Exception {}

src/Exception/AuthenticationException.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@
77
/**
88
* This class represents a generic error.
99
*/
10-
class AuthenticationException extends GeoIp2Exception
11-
{
12-
}
10+
// phpcs:disable
11+
class AuthenticationException extends GeoIp2Exception {}

src/Exception/GeoIp2Exception.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@
77
/**
88
* This class represents a generic error.
99
*/
10-
class GeoIp2Exception extends \Exception
11-
{
12-
}
10+
// phpcs:disable
11+
class GeoIp2Exception extends \Exception {}

src/Exception/OutOfQueriesException.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@
77
/**
88
* This class represents a generic error.
99
*/
10-
class OutOfQueriesException extends GeoIp2Exception
11-
{
12-
}
10+
// phpcs:disable
11+
class OutOfQueriesException extends GeoIp2Exception {}

src/Model/Enterprise.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@
1010
* See https://dev.maxmind.com/geoip/docs/web-services?lang=en for more
1111
* details.
1212
*/
13-
class Enterprise extends City
14-
{
15-
}
13+
// phpcs:disable
14+
class Enterprise extends City {}

src/Model/Insights.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@
1010
* See https://dev.maxmind.com/geoip/docs/web-services?lang=en for
1111
* more details.
1212
*/
13-
class Insights extends City
14-
{
15-
}
13+
// phpcs:disable
14+
class Insights extends City {}

0 commit comments

Comments
 (0)