diff --git a/.travis/run-tests.sh b/.travis/run-tests.sh index 7e1baa3..a84e0ba 100755 --- a/.travis/run-tests.sh +++ b/.travis/run-tests.sh @@ -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 diff --git a/.travis/skipped-components b/.travis/skipped-components index 31bcaa8..171dfe9 100644 --- a/.travis/skipped-components +++ b/.travis/skipped-components @@ -1,5 +1,6 @@ Zend/Amf Zend/Date +Zend/Dojo Zend/Queue Zend/Service Zend/Test diff --git a/.travis/tested-components b/.travis/tested-components index b1f4a79..b0b9438 100644 --- a/.travis/tested-components +++ b/.travis/tested-components @@ -22,6 +22,7 @@ Zend/Form Zend/GData Zend/Http Zend/InfoCard +Zend/InputFilter Zend/Json Zend/Ldap Zend/Loader @@ -29,10 +30,11 @@ 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 diff --git a/src/Cloud/Decorator/Exception/ExceptionInterface.php b/src/Cloud/Decorator/Exception/ExceptionInterface.php index e9490df..6bb04ec 100644 --- a/src/Cloud/Decorator/Exception/ExceptionInterface.php +++ b/src/Cloud/Decorator/Exception/ExceptionInterface.php @@ -21,6 +21,8 @@ namespace Zend\Tag\Cloud\Decorator\Exception; +use Zend\Tag\Exception\ExceptionInterface as Exception; + /** * Exception class for Zend_Tag_Cloud_Decorator * @@ -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 +{} \ No newline at end of file diff --git a/src/Cloud/Decorator/Exception/InvalidArgumentException.php b/src/Cloud/Decorator/Exception/InvalidArgumentException.php index 81cf7ce..8b0a585 100644 --- a/src/Cloud/Decorator/Exception/InvalidArgumentException.php +++ b/src/Cloud/Decorator/Exception/InvalidArgumentException.php @@ -1,7 +1,10 @@