Skip to content

Commit

Permalink
Correcting Use Order
Browse files Browse the repository at this point in the history
Adding the use statements in alphabetical order
  • Loading branch information
pirouet committed Mar 30, 2015
1 parent deeae8a commit f82f543
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Database/Type/BinaryType.php
Expand Up @@ -15,8 +15,8 @@
namespace Cake\Database\Type;

use Cake\Core\Exception\Exception;
use Cake\Database\Type;
use Cake\Database\Driver;
use Cake\Database\Type;
use PDO;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Network/Http/FormData.php
Expand Up @@ -13,8 +13,8 @@
*/
namespace Cake\Network\Http;

use Countable;
use Cake\Network\Http\FormData\Part;
use Countable;

/**
* Provides an interface for building
Expand Down
1 change: 1 addition & 0 deletions src/TestSuite/TestSuite.php
Expand Up @@ -17,6 +17,7 @@
namespace Cake\TestSuite;

use Cake\Filesystem\Folder;

/**
* A class to contain test cases and run them with shared fixtures
*
Expand Down
2 changes: 1 addition & 1 deletion src/Validation/ValidationSet.php
Expand Up @@ -15,8 +15,8 @@
namespace Cake\Validation;

use ArrayAccess;
use IteratorAggregate;
use Countable;
use IteratorAggregate;

/**
* ValidationSet object. Holds all validation rules for a field and exposes
Expand Down
2 changes: 1 addition & 1 deletion src/Validation/Validator.php
Expand Up @@ -15,8 +15,8 @@
namespace Cake\Validation;

use ArrayAccess;
use IteratorAggregate;
use Countable;
use IteratorAggregate;

use Cake\Validation\RulesProvider;
use Cake\Validation\ValidationSet;
Expand Down

0 comments on commit f82f543

Please sign in to comment.