Skip to content

Commit

Permalink
git st
Browse files Browse the repository at this point in the history
  • Loading branch information
rgazelot committed Apr 8, 2016
1 parent 22067ae commit f51ae1a
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions src/Exception/BackendException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use Exception;

use CalendArt\Exception\ApiErrorException;
use CalendArt\Exception\ApiErrorInterface;

class BackendException extends ApiErrorException
class BackendException extends Exception implements ApiErrorInterface
{
public function __construct($message = null, $code = 0, Exception $previous = null)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Exception/BadRequestException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use Exception;

use CalendArt\Exception\ApiErrorException;
use CalendArt\Exception\ApiErrorInterface;

class BadRequestException extends ApiErrorException
class BadRequestException extends Exception implements ApiErrorInterface
{
public function __construct($message = null, $code = 0, Exception $previous = null)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Exception/CalendarUsageLimitsExceededException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use Exception;

use CalendArt\Exception\ApiErrorException;
use CalendArt\Exception\ApiErrorInterface;

class CalendarUsageLimitsExceededException extends ApiErrorException
class CalendarUsageLimitsExceededException extends Exception implements ApiErrorInterface
{
public function __construct($message = null, $code = 0, Exception $previous = null)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Exception/DailyLimitExceededException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use Exception;

use CalendArt\Exception\ApiErrorException;
use CalendArt\Exception\ApiErrorInterface;

class DailyLimitExceededException extends ApiErrorException
class DailyLimitExceededException extends Exception implements ApiErrorInterface
{
public function __construct($message = null, $code = 0, Exception $previous = null)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Exception/GoneException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use Exception;

use CalendArt\Exception\ApiErrorException;
use CalendArt\Exception\ApiErrorInterface;

class GoneException extends ApiErrorException
class GoneException extends Exception implements ApiErrorInterface
{
public function __construct($message = null, $code = 0, Exception $previous = null)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Exception/IdentifierAlreadyExistsException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use Exception;

use CalendArt\Exception\ApiErrorException;
use CalendArt\Exception\ApiErrorInterface;

class IdentifierAlreadyExistsException extends ApiErrorException
class IdentifierAlreadyExistsException extends Exception implements ApiErrorInterface
{
public function __construct($message = null, $code = 0, Exception $previous = null)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Exception/InvalidCredentialsException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use Exception;

use CalendArt\Exception\ApiErrorException;
use CalendArt\Exception\ApiErrorInterface;

class InvalidCredentialsException extends ApiErrorException
class InvalidCredentialsException extends Exception implements ApiErrorInterface
{
public function __construct($message = null, $code = 0, Exception $previous = null)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Exception/NotFoundException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use Exception;

use CalendArt\Exception\ApiErrorException;
use CalendArt\Exception\NotFoundInterface;

class NotFoundException extends ApiErrorException
class NotFoundException extends Exception implements NotFoundInterface
{
public function __construct($message = null, $code = 0, Exception $previous = null)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Exception/PreconditionException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use Exception;

use CalendArt\Exception\ApiErrorException;
use CalendArt\Exception\ApiErrorInterface;

class PreconditionException extends ApiErrorException
class PreconditionException extends Exception implements ApiErrorInterface
{
public function __construct($message = null, $code = 0, Exception $previous = null)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Exception/RateLimitExceededException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use Exception;

use CalendArt\Exception\ApiErrorException;
use CalendArt\Exception\ApiErrorInterface;

class RateLimitExceededException extends ApiErrorException
class RateLimitExceededException extends Exception implements ApiErrorInterface
{
public function __construct($message = null, $code = 0, Exception $previous = null)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Exception/UserRateLimitExceededException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use Exception;

use CalendArt\Exception\ApiErrorException;
use CalendArt\Exception\ApiErrorInterface;

class UserRateLimitExceededException extends ApiErrorException
class UserRateLimitExceededException extends Exception implements ApiErrorInterface
{
public function __construct($message = null, $code = 0, Exception $previous = null)
{
Expand Down

0 comments on commit f51ae1a

Please sign in to comment.