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

Commit

Permalink
Merge branch 'master' of git://github.com/zendframework/zf2 into cach…
Browse files Browse the repository at this point in the history
…e_interfaces
  • Loading branch information
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .travis/run-tests.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
travisdir=$(dirname $(readlink /proc/$$/fd/255))
travisdir=$(dirname "$0")
testdir="$travisdir/../tests"
testedcomponents=(`cat "$travisdir/tested-components"`)
result=0
Expand Down
1 change: 1 addition & 0 deletions .travis/skipped-components
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Zend/Amf
Zend/Date
Zend/Dojo
Zend/Queue
Zend/Service
Zend/Test
Expand Down
4 changes: 3 additions & 1 deletion .travis/tested-components
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,19 @@ Zend/Form
Zend/GData
Zend/Http
Zend/InfoCard
Zend/InputFilter
Zend/Json
Zend/Ldap
Zend/Loader
Zend/Locale
Zend/Log
Zend/Mail
Zend/Markup
Zend/Math
Zend/Measure
Zend/Memory
Zend/Mime
Zend/Module
Zend/ModuleManager
Zend/Mvc
Zend/Navigation
Zend/OAuth
Expand Down
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 5b6a369

Please sign in to comment.