Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
fixed exceptions in Zend\Tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
7 changes: 4 additions & 3 deletions src/Cloud/Decorator/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@

namespace Zend\Tag\Cloud\Decorator\Exception;

use Zend\Tag\Exception\ExceptionInterface as Exception;

/**
* Exception class for Zend_Tag_Cloud_Decorator
*
Expand All @@ -29,6 +31,5 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
interface ExceptionInterface extends \Zend\Tag\Exception\ExceptionInterface
{
}
interface ExceptionInterface extends Exception
{}
7 changes: 5 additions & 2 deletions src/Cloud/Decorator/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
<?php

namespace Zend\Tag\Cloud\Decorator\Exception;

use Zend\Tag\Exception;

class InvalidArgumentException
extends \InvalidArgumentException
extends Exception\InvalidArgumentException
implements ExceptionInterface
{}
{}
4 changes: 2 additions & 2 deletions src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

class InvalidArgumentException
extends \InvalidArgumentException
implements \Zend\Tag\Exception\ExceptionInterface
{}
implements ExceptionInterface
{}
4 changes: 2 additions & 2 deletions src/Exception/OutOfBoundsException.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

class OutOfBoundsException
extends \OutOfBoundsException
implements \Zend\Tag\Exception\ExceptionInterface
{}
implements ExceptionInterface
{}

0 comments on commit 28ff787

Please sign in to comment.