Skip to content
This repository has been archived by the owner on Jan 29, 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 92bf598 commit 307427e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Config.php
Expand Up @@ -10,9 +10,9 @@

namespace Zend\Config;

use ArrayAccess;
use Countable;
use Iterator;
use ArrayAccess;
use Zend\Stdlib\ArrayUtils;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Processor/Queue.php
Expand Up @@ -11,8 +11,8 @@
namespace Zend\Config\Processor;

use Zend\Config\Config;
use Zend\Stdlib\PriorityQueue;
use Zend\Config\Exception;
use Zend\Stdlib\PriorityQueue;

/**
* @category Zend
Expand Down
2 changes: 1 addition & 1 deletion src/Processor/Token.php
Expand Up @@ -10,9 +10,9 @@

namespace Zend\Config\Processor;

use Traversable;
use Zend\Config\Config;
use Zend\Config\Exception;
use Traversable;

/**
* @category Zend
Expand Down
2 changes: 1 addition & 1 deletion src/Reader/Json.php
Expand Up @@ -11,8 +11,8 @@
namespace Zend\Config\Reader;

use Zend\Config\Exception;
use Zend\Json\Json as JsonFormat;
use Zend\Json\Exception as JsonException;
use Zend\Json\Json as JsonFormat;

/**
* JSON config reader.
Expand Down
2 changes: 1 addition & 1 deletion src/Writer/AbstractWriter.php
Expand Up @@ -11,8 +11,8 @@
namespace Zend\Config\Writer;

use Traversable;
use Zend\Config\Exception;
use Zend\Config\Config;
use Zend\Config\Exception;
use Zend\Stdlib\ArrayUtils;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Writer/Xml.php
Expand Up @@ -10,8 +10,8 @@

namespace Zend\Config\Writer;

use Zend\Config\Exception;
use XMLWriter;
use Zend\Config\Exception;

/**
* @category Zend
Expand Down

0 comments on commit 307427e

Please sign in to comment.