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 9 changed files with 12 additions and 19 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
3 changes: 1 addition & 2 deletions src/Exception/BadMethodCallException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
class BadMethodCallException
extends \BadMethodCallException
implements ExceptionInterface
{
}
{}
3 changes: 1 addition & 2 deletions src/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,4 @@
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
interface ExceptionInterface
{
}
{}
7 changes: 2 additions & 5 deletions src/Exception/ExceptionNotLoadedException.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,5 @@

namespace Zend\Soap\Exception;

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

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

}
{}

0 comments on commit 71ea52c

Please sign in to comment.