Browse Source

Correcting Use Order

Adding the use statements in alphabetical order
pirouet 11 years ago
parent
commit
f82f543362

+ 1 - 1
src/Database/Type/BinaryType.php

@@ -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;
 
 /**

+ 1 - 1
src/Network/Http/FormData.php

@@ -13,8 +13,8 @@
  */
 namespace Cake\Network\Http;
 
-use Countable;
 use Cake\Network\Http\FormData\Part;
+use Countable;
 
 /**
  * Provides an interface for building

+ 1 - 0
src/TestSuite/TestSuite.php

@@ -17,6 +17,7 @@
 namespace Cake\TestSuite;
 
 use Cake\Filesystem\Folder;
+
 /**
  * A class to contain test cases and run them with shared fixtures
  *

+ 1 - 1
src/Validation/ValidationSet.php

@@ -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

+ 1 - 1
src/Validation/Validator.php

@@ -15,8 +15,8 @@
 namespace Cake\Validation;
 
 use ArrayAccess;
-use IteratorAggregate;
 use Countable;
+use IteratorAggregate;
 
 use Cake\Validation\RulesProvider;
 use Cake\Validation\ValidationSet;