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

Commit

Permalink
[zen-49] Correct import statements across framework
Browse files Browse the repository at this point in the history
- Ran a script that would create multiple import statements out of multi-line
  import statements, and which would sort all import statements in alphabetic
  order. Script is at https://gist.github.com/3079222 and was run by dropping
  into the library/Zend folder and typing (in zsh)
  "for file in **/*.php;do php /path/to/replace-uses.php $file; done"
  • Loading branch information
weierophinney committed Jul 9, 2012
1 parent 3b2f4d9 commit 8bbad0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DispatchableInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

namespace Zend\Stdlib;

use Zend\Stdlib\ResponseInterface as Response;
use Zend\Stdlib\RequestInterface as Request;
use Zend\Stdlib\ResponseInterface as Response;

interface DispatchableInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Hydrator/Reflection.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
namespace Zend\Stdlib\Hydrator;

use ReflectionClass;
use Zend\Stdlib\Hydrator\HydratorInterface;
use Zend\Stdlib\Exception;
use Zend\Stdlib\Hydrator\HydratorInterface;

class Reflection implements HydratorInterface
{
Expand Down

0 comments on commit 8bbad0e

Please sign in to comment.