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

Commit

Permalink
[zen-49] Sort import statements
Browse files Browse the repository at this point in the history
- Import statements should be sorted alphabetically
- Same applies to "implements"
  • Loading branch information
weierophinney committed Jul 9, 2012
1 parent f927fae commit aabe1c0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/AbstractContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @category Zend
* @package Zend_Navigation
*/
abstract class AbstractContainer implements RecursiveIterator, Countable
abstract class AbstractContainer implements Countable, RecursiveIterator
{
/**
* Contains sub pages
Expand Down
5 changes: 2 additions & 3 deletions src/Exception/BadMethodCallException.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* @package Zend_Navigation
* @subpackage Exception
*/
class BadMethodCallException
extends \BadMethodCallException
implements ExceptionInterface
class BadMethodCallException extends \BadMethodCallException implements
ExceptionInterface
{}
4 changes: 1 addition & 3 deletions src/Exception/DomainException.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,5 @@
* @package Zend_Navigation
* @subpackage Exception
*/
class DomainException
extends \DomainException
implements ExceptionInterface
class DomainException extends \DomainException implements ExceptionInterface
{}
5 changes: 2 additions & 3 deletions src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* @package Zend_Navigation
* @subpackage Exception
*/
class InvalidArgumentException
extends \InvalidArgumentException
implements ExceptionInterface
class InvalidArgumentException extends \InvalidArgumentException implements
ExceptionInterface
{}
4 changes: 1 addition & 3 deletions src/Exception/OutOfBoundsException.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,5 @@
* @package Zend_Navigation
* @subpackage Exception
*/
class OutOfBoundsException
extends \OutOfBoundsException
implements ExceptionInterface
class OutOfBoundsException extends \OutOfBoundsException implements ExceptionInterface
{}
4 changes: 2 additions & 2 deletions src/Service/AbstractNavigationFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
namespace Zend\Navigation\Service;

use Zend\Config;
use Zend\Mvc\Router\RouteMatch;
use Zend\Mvc\Router\RouteStackInterface as Router;
use Zend\Navigation\Exception;
use Zend\Navigation\Navigation;
use Zend\Navigation\Page\Mvc as MvcPage;
use Zend\Mvc\Router\RouteMatch;
use Zend\Mvc\Router\RouteStackInterface as Router;
use Zend\ServiceManager\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;

Expand Down

0 comments on commit aabe1c0

Please sign in to comment.