Skip to content
This repository has been archived by the owner on Dec 7, 2019. It is now read-only.

Commit

Permalink
[zen-52] Renamed abstract classes in Zend\Service
Browse files Browse the repository at this point in the history
Renamed abstract classes
Fixed exceptions
Renamed interfaces
Fixed phpdoc
  • Loading branch information
prolic committed Jul 3, 2012
1 parent f7cd184 commit d2947e1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
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\Service\SlideShare;
namespace Zend\Service\SlideShare\Exception;

/**
* @category Zend
Expand All @@ -28,6 +28,6 @@
* @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
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class InvalidArgumentException
extends \InvalidArgumentException
implements \Zend\Service\SlideShare\Exception
{}
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{
}
7 changes: 3 additions & 4 deletions library/ZendService/SlideShare/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class RuntimeException
extends \RuntimeException
implements \Zend\Service\SlideShare\Exception
{}
class RuntimeException extends \RuntimeException implements ExceptionInterface
{
}

0 comments on commit d2947e1

Please sign in to comment.