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_shareEm
  • Loading branch information
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/Exception.php → src/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* @license http://framework.zend.com/license/new-bsd New BSD License
*/

namespace Zend\Uri;
namespace Zend\Uri\Exception;

/**
* Exceptions for Zend_Uri
Expand All @@ -29,5 +29,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 Exception
interface ExceptionInterface
{}
2 changes: 1 addition & 1 deletion src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

class InvalidArgumentException
extends \InvalidArgumentException
implements \Zend\Uri\Exception
implements \Zend\Uri\Exception\ExceptionInterface
{}
2 changes: 1 addition & 1 deletion src/Exception/InvalidUriException.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/
class InvalidUriException
extends \InvalidArgumentException
implements \Zend\Uri\Exception
implements \Zend\Uri\Exception\ExceptionInterface
{

}
2 changes: 1 addition & 1 deletion src/Exception/InvalidUriPartException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class InvalidUriPartException
extends \InvalidArgumentException
implements \Zend\Uri\Exception
implements \Zend\Uri\Exception\ExceptionInterface
{
/**
* Part-specific error codes
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/InvalidUriTypeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/
class InvalidUriTypeException
extends \InvalidArgumentException
implements \Zend\Uri\Exception
implements \Zend\Uri\Exception\ExceptionInterface
{

}
6 changes: 3 additions & 3 deletions src/UriFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* @uses \Zend\Uri\Http
* @uses \Zend\Uri\File
* @uses \Zend\Uri\Mailto
* @uses \Zend\Uri\Exception
* @uses \Zend\Uri\Exception\ExceptionInterface
* @uses \Zend\Loader
* @category Zend
* @package Zend_Uri
Expand All @@ -61,8 +61,8 @@ abstract class UriFactory
/**
* Register a scheme-specific class to be used
*
* @param unknown_type $scheme
* @param unknown_type $class
* @param string $scheme
* @param string $class
*/
static public function registerScheme($scheme, $class)
{
Expand Down

0 comments on commit 37055aa

Please sign in to comment.