From f82f5433629387361b96fa30ed4e1d1330bb9b9b Mon Sep 17 00:00:00 2001 From: pirouet Date: Tue, 31 Mar 2015 00:51:22 +0100 Subject: [PATCH] Correcting Use Order Adding the use statements in alphabetical order --- src/Database/Type/BinaryType.php | 2 +- src/Network/Http/FormData.php | 2 +- src/TestSuite/TestSuite.php | 1 + src/Validation/ValidationSet.php | 2 +- src/Validation/Validator.php | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/Database/Type/BinaryType.php b/src/Database/Type/BinaryType.php index b7493ef9ed3..2f88cf90184 100644 --- a/src/Database/Type/BinaryType.php +++ b/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; /** diff --git a/src/Network/Http/FormData.php b/src/Network/Http/FormData.php index e916a53ec58..7dbcadb1061 100644 --- a/src/Network/Http/FormData.php +++ b/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 diff --git a/src/TestSuite/TestSuite.php b/src/TestSuite/TestSuite.php index 31f53d9ea32..d85bf0efb9b 100644 --- a/src/TestSuite/TestSuite.php +++ b/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 * diff --git a/src/Validation/ValidationSet.php b/src/Validation/ValidationSet.php index 819fdf30225..3053168b596 100644 --- a/src/Validation/ValidationSet.php +++ b/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 diff --git a/src/Validation/Validator.php b/src/Validation/Validator.php index 9460852f54e..77d04e30275 100644 --- a/src/Validation/Validator.php +++ b/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;