diff --git a/.travis/run-tests.sh b/.travis/run-tests.sh index 7e1baa3b..a84e0ba2 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 31bcaa87..171dfe9d 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 b1f4a794..b0b94380 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/Exception/BadMethodCallException.php b/src/Exception/BadMethodCallException.php index a8cc16b2..6d1fce24 100644 --- a/src/Exception/BadMethodCallException.php +++ b/src/Exception/BadMethodCallException.php @@ -5,5 +5,4 @@ class BadMethodCallException extends \BadMethodCallException implements ExceptionInterface -{ -} +{} \ No newline at end of file diff --git a/src/Exception/ExceptionInterface.php b/src/Exception/ExceptionInterface.php index 5515a870..6e31e4d3 100644 --- a/src/Exception/ExceptionInterface.php +++ b/src/Exception/ExceptionInterface.php @@ -29,5 +29,4 @@ * @license http://framework.zend.com/license/new-bsd New BSD License */ interface ExceptionInterface -{ -} +{} \ No newline at end of file diff --git a/src/Exception/ExceptionNotLoadedException.php b/src/Exception/ExceptionNotLoadedException.php index 10c8de59..7bcc3863 100644 --- a/src/Exception/ExceptionNotLoadedException.php +++ b/src/Exception/ExceptionNotLoadedException.php @@ -2,8 +2,5 @@ namespace Zend\Soap\Exception; -class ExtensionNotLoadedException - extends \RuntimeException - implements ExceptionInterface -{ -} +class ExtensionNotLoadedException extends RuntimeException +{} \ No newline at end of file diff --git a/src/Exception/InvalidArgumentException.php b/src/Exception/InvalidArgumentException.php index 6797b57c..aaf720bd 100644 --- a/src/Exception/InvalidArgumentException.php +++ b/src/Exception/InvalidArgumentException.php @@ -5,5 +5,4 @@ class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface -{ -} +{} \ No newline at end of file diff --git a/src/Exception/RuntimeException.php b/src/Exception/RuntimeException.php index ce880818..272c29cf 100644 --- a/src/Exception/RuntimeException.php +++ b/src/Exception/RuntimeException.php @@ -5,6 +5,4 @@ class RuntimeException extends \RuntimeException implements ExceptionInterface -{ - -} +{} \ No newline at end of file diff --git a/src/Exception/UnexpectedValueException.php b/src/Exception/UnexpectedValueException.php index 79f10512..c18e2402 100644 --- a/src/Exception/UnexpectedValueException.php +++ b/src/Exception/UnexpectedValueException.php @@ -5,6 +5,4 @@ class UnexpectedValueException extends \UnexpectedValueException implements ExceptionInterface -{ - -} +{} \ No newline at end of file