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 81285a7 commit 1dacd62
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
3 changes: 1 addition & 2 deletions src/Adapter/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
* @category Zend
* @package Zend_ProgressBar
*/
interface ExceptionInterface
extends ProgressBarException
interface ExceptionInterface extends ProgressBarException
{
}
5 changes: 2 additions & 3 deletions src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
* @category Zend
* @package Zend_ProgressBar
*/
class InvalidArgumentException
extends \InvalidArgumentException
implements ExceptionInterface
class InvalidArgumentException extends \InvalidArgumentException implements
ExceptionInterface
{}
4 changes: 1 addition & 3 deletions src/Exception/OutOfRangeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
* @category Zend
* @package Zend_ProgressBar
*/
class OutOfRangeException
extends \OutOfRangeException
implements ExceptionInterface
class OutOfRangeException extends \OutOfRangeException implements ExceptionInterface
{
}

0 comments on commit 1dacd62

Please sign in to comment.