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

Commit

Permalink
Merge branch 'feature/zend_exception-refactor' of https://github.com/…
Browse files Browse the repository at this point in the history
…Intiilapa/zf2 into feature/zend_exception-refactor
  • Loading branch information
weierophinney committed Apr 28, 2011
13 parents decb6ae + 352e42b + fa459f5 + 3eff137 + 3648ab6 + 4096125 + 0037391 + 9bdfcd9 + 6cd1498 + ecac99d + 199ed75 + b8507f7 + 30482fa commit 5e55e82
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*
* Class to represent exceptions that occur during Feed operations.
*
* @uses \Zend\Exception
* @uses \Exception
* @category Zend
* @package Zend_Feed
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
Expand Down
4 changes: 2 additions & 2 deletions src/PubSubHubbub/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
namespace Zend\Feed\PubSubHubbub;

/**
* @uses \Zend\Exception
* @uses \Exception
* @category Zend
* @package Zend_Feed_Pubsubhubbub
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Exception extends \Zend\Exception
class Exception extends \Exception
{}
2 changes: 1 addition & 1 deletion src/Reader/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*
* Class to represent exceptions that occur during Feed operations.
*
* @uses \Zend\Exception
* @uses \Exception
* @category Zend
* @package Zend_Feed
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
Expand Down
2 changes: 1 addition & 1 deletion src/Writer/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*
* Class to represent exceptions that occur during Feed operations.
*
* @uses \Zend\Exception
* @uses \Exception
* @category Zend
* @package Zend_Feed
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
Expand Down
2 changes: 1 addition & 1 deletion src/Writer/Exception/InvalidMethodException.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class InvalidMethodException extends \Zend\Exception
class InvalidMethodException extends \Exception
{}
4 changes: 2 additions & 2 deletions src/Writer/InvalidMethodException.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
*
* Class to represent exceptions that occur during Feed operations.
*
* @uses \Zend\Exception
* @uses \Exception
* @category Zend
* @package Zend_Feed
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class InvalidMethodException extends \Zend\Exception
class InvalidMethodException extends \Exception
{}

0 comments on commit 5e55e82

Please sign in to comment.