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

Commit

Permalink
Merge branch 'cs/zendframework/zendframework#6872-php-cs-fixer-automa…
Browse files Browse the repository at this point in the history
  • Loading branch information
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
3 changes: 2 additions & 1 deletion src/Cloud/Decorator/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@
* Exception class for Zend\Tag\Cloud\Decorator
*/
interface ExceptionInterface extends Exception
{}
{
}
3 changes: 2 additions & 1 deletion src/Cloud/Decorator/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@
class InvalidArgumentException
extends Exception\InvalidArgumentException
implements ExceptionInterface
{}
{
}
3 changes: 2 additions & 1 deletion src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@
class InvalidArgumentException
extends \InvalidArgumentException
implements ExceptionInterface
{}
{
}
3 changes: 2 additions & 1 deletion src/Exception/InvalidAttributeNameException.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@
use DomainException;

class InvalidAttributeNameException extends DomainException implements ExceptionInterface
{}
{
}
3 changes: 2 additions & 1 deletion src/Exception/InvalidElementNameException.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@
use DomainException;

class InvalidElementNameException extends DomainException implements ExceptionInterface
{}
{
}
3 changes: 2 additions & 1 deletion src/Exception/OutOfBoundsException.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@
class OutOfBoundsException
extends \OutOfBoundsException
implements ExceptionInterface
{}
{
}
1 change: 0 additions & 1 deletion test/Cloud/CloudTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
*/
class CloudTest extends \PHPUnit_Framework_TestCase
{

public function testGetAndSetItemList()
{
$cloud = $this->_getCloud();
Expand Down

0 comments on commit 5b25967

Please sign in to comment.