Skip to content

Commit

Permalink
Run new php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
horgh committed Sep 14, 2023
1 parent 4e563ed commit 85f1765
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 18 deletions.
5 changes: 2 additions & 3 deletions src/Exception/AuthenticationException.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@
/**
* This class represents an error authenticating.
*/
class AuthenticationException extends InvalidRequestException
{
}
// phpcs:disable
class AuthenticationException extends InvalidRequestException {}
5 changes: 2 additions & 3 deletions src/Exception/InsufficientFundsException.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@
/**
* Thrown when the account is out of credits.
*/
class InsufficientFundsException extends InvalidRequestException
{
}
// phpcs:disable
class InsufficientFundsException extends InvalidRequestException {}
5 changes: 2 additions & 3 deletions src/Exception/InvalidInputException.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,5 @@
* web service. For example, if the array cannot be encoded as JSON or if there
* is a missing or invalid field.
*/
class InvalidInputException extends WebServiceException
{
}
// phpcs:disable
class InvalidInputException extends WebServiceException {}
5 changes: 2 additions & 3 deletions src/Exception/IpAddressNotFoundException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@

namespace MaxMind\Exception;

class IpAddressNotFoundException extends InvalidRequestException
{
}
// phpcs:disable
class IpAddressNotFoundException extends InvalidRequestException {}
5 changes: 2 additions & 3 deletions src/Exception/PermissionRequiredException.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@
/**
* This exception is thrown when the service requires permission to access.
*/
class PermissionRequiredException extends InvalidRequestException
{
}
// phpcs:disable
class PermissionRequiredException extends InvalidRequestException {}
5 changes: 2 additions & 3 deletions src/Exception/WebServiceException.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@
/**
* This class represents a generic web service error.
*/
class WebServiceException extends \Exception
{
}
// phpcs:disable
class WebServiceException extends \Exception {}

0 comments on commit 85f1765

Please sign in to comment.