summaryrefslogtreecommitdiffstats
path: root/tests/Components
diff options
context:
space:
mode:
authorDamian Dlugosz <bigfootdd@gmail.com>2017-02-12 15:25:50 +0100
committerDamian Dlugosz <bigfootdd@gmail.com>2017-02-12 15:25:50 +0100
commit557fa33ae37f8bfb95d6f415e0d4ad43cf20093e (patch)
tree07bfaa923268c96b52556ff513b604a619a74c04 /tests/Components
parent677de552c8577b9eebc3f8393a25f07e4bed2f31 (diff)
downloadsql-parser-557fa33ae37f8bfb95d6f415e0d4ad43cf20093e.zip
sql-parser-557fa33ae37f8bfb95d6f415e0d4ad43cf20093e.tar.gz
sql-parser-557fa33ae37f8bfb95d6f415e0d4ad43cf20093e.tar.bz2
Order imports
Diffstat (limited to 'tests/Components')
-rw-r--r--tests/Components/Array2dTest.php2
-rw-r--r--tests/Components/ArrayObjTest.php2
-rw-r--r--tests/Components/CaseExpressionTest.php2
-rw-r--r--tests/Components/ComponentTest.php2
-rw-r--r--tests/Components/ConditionTest.php2
-rw-r--r--tests/Components/CreateDefinitionTest.php2
-rw-r--r--tests/Components/ExpressionArrayTest.php2
-rw-r--r--tests/Components/ExpressionTest.php2
-rw-r--r--tests/Components/IntoKeywordTest.php2
-rw-r--r--tests/Components/JoinKeywordTest.php2
-rw-r--r--tests/Components/KeyTest.php2
-rw-r--r--tests/Components/LimitTest.php2
-rw-r--r--tests/Components/OptionsArrayTest.php2
-rw-r--r--tests/Components/ParameterDefinitionTest.php2
-rw-r--r--tests/Components/PartitionDefinitionTest.php2
-rw-r--r--tests/Components/ReferenceTest.php2
-rw-r--r--tests/Components/RenameOperationTest.php2
17 files changed, 17 insertions, 17 deletions
diff --git a/tests/Components/Array2dTest.php b/tests/Components/Array2dTest.php
index 6aebaf3..b7ee756 100644
--- a/tests/Components/Array2dTest.php
+++ b/tests/Components/Array2dTest.php
@@ -2,8 +2,8 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Components\Array2d;
+use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class Array2dTest extends TestCase
diff --git a/tests/Components/ArrayObjTest.php b/tests/Components/ArrayObjTest.php
index cd851f8..41cf630 100644
--- a/tests/Components/ArrayObjTest.php
+++ b/tests/Components/ArrayObjTest.php
@@ -2,8 +2,8 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Components\ArrayObj;
+use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class ArrayObjTest extends TestCase
diff --git a/tests/Components/CaseExpressionTest.php b/tests/Components/CaseExpressionTest.php
index 0e2fef3..afe5e60 100644
--- a/tests/Components/CaseExpressionTest.php
+++ b/tests/Components/CaseExpressionTest.php
@@ -2,8 +2,8 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Components\CaseExpression;
+use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class CaseExpressionTest extends TestCase
diff --git a/tests/Components/ComponentTest.php b/tests/Components/ComponentTest.php
index 6260518..8686160 100644
--- a/tests/Components/ComponentTest.php
+++ b/tests/Components/ComponentTest.php
@@ -4,8 +4,8 @@ namespace PhpMyAdmin\SqlParser\Tests\Parser;
use PhpMyAdmin\SqlParser\Component;
use PhpMyAdmin\SqlParser\Parser;
-use PhpMyAdmin\SqlParser\TokensList;
use PhpMyAdmin\SqlParser\Tests\TestCase;
+use PhpMyAdmin\SqlParser\TokensList;
class ComponentTest extends TestCase
{
diff --git a/tests/Components/ConditionTest.php b/tests/Components/ConditionTest.php
index 317f24e..27c6a4f 100644
--- a/tests/Components/ConditionTest.php
+++ b/tests/Components/ConditionTest.php
@@ -2,8 +2,8 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Components\Condition;
+use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class ConditionTest extends TestCase
diff --git a/tests/Components/CreateDefinitionTest.php b/tests/Components/CreateDefinitionTest.php
index 361491a..eca7362 100644
--- a/tests/Components/CreateDefinitionTest.php
+++ b/tests/Components/CreateDefinitionTest.php
@@ -2,8 +2,8 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Components\CreateDefinition;
+use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class CreateDefinitionTest extends TestCase
diff --git a/tests/Components/ExpressionArrayTest.php b/tests/Components/ExpressionArrayTest.php
index 84c1cef..2c5527d 100644
--- a/tests/Components/ExpressionArrayTest.php
+++ b/tests/Components/ExpressionArrayTest.php
@@ -2,8 +2,8 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Components\ExpressionArray;
+use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class ExpressionArrayTest extends TestCase
diff --git a/tests/Components/ExpressionTest.php b/tests/Components/ExpressionTest.php
index b1d6268..6eac3b8 100644
--- a/tests/Components/ExpressionTest.php
+++ b/tests/Components/ExpressionTest.php
@@ -2,8 +2,8 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Components\Expression;
+use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class ExpressionTest extends TestCase
diff --git a/tests/Components/IntoKeywordTest.php b/tests/Components/IntoKeywordTest.php
index c7d2ee1..2ebf5ee 100644
--- a/tests/Components/IntoKeywordTest.php
+++ b/tests/Components/IntoKeywordTest.php
@@ -2,8 +2,8 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Components\IntoKeyword;
+use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class IntoKeywordTest extends TestCase
diff --git a/tests/Components/JoinKeywordTest.php b/tests/Components/JoinKeywordTest.php
index 58d5849..fbe2d40 100644
--- a/tests/Components/JoinKeywordTest.php
+++ b/tests/Components/JoinKeywordTest.php
@@ -2,8 +2,8 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Components\JoinKeyword;
+use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class JoinKeywordTest extends TestCase
diff --git a/tests/Components/KeyTest.php b/tests/Components/KeyTest.php
index 741f10c..ed05288 100644
--- a/tests/Components/KeyTest.php
+++ b/tests/Components/KeyTest.php
@@ -2,8 +2,8 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Components\Key;
+use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class KeyTest extends TestCase
diff --git a/tests/Components/LimitTest.php b/tests/Components/LimitTest.php
index 84c8e31..3e89f9e 100644
--- a/tests/Components/LimitTest.php
+++ b/tests/Components/LimitTest.php
@@ -2,8 +2,8 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Components\Limit;
+use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class LimitTest extends TestCase
diff --git a/tests/Components/OptionsArrayTest.php b/tests/Components/OptionsArrayTest.php
index 2832bd5..4dda0db 100644
--- a/tests/Components/OptionsArrayTest.php
+++ b/tests/Components/OptionsArrayTest.php
@@ -2,8 +2,8 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Components\OptionsArray;
+use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class OptionsArrayTest extends TestCase
diff --git a/tests/Components/ParameterDefinitionTest.php b/tests/Components/ParameterDefinitionTest.php
index b90d710..683eb3a 100644
--- a/tests/Components/ParameterDefinitionTest.php
+++ b/tests/Components/ParameterDefinitionTest.php
@@ -2,8 +2,8 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Components\ParameterDefinition;
+use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class ParameterDefinitionTest extends TestCase
diff --git a/tests/Components/PartitionDefinitionTest.php b/tests/Components/PartitionDefinitionTest.php
index 7e0948b..7edc21e 100644
--- a/tests/Components/PartitionDefinitionTest.php
+++ b/tests/Components/PartitionDefinitionTest.php
@@ -2,8 +2,8 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Components\PartitionDefinition;
+use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class PartitionDefinitionTest extends TestCase
diff --git a/tests/Components/ReferenceTest.php b/tests/Components/ReferenceTest.php
index 7869e4a..dc142fe 100644
--- a/tests/Components/ReferenceTest.php
+++ b/tests/Components/ReferenceTest.php
@@ -2,9 +2,9 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Components\Expression;
use PhpMyAdmin\SqlParser\Components\Reference;
+use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class ReferenceTest extends TestCase
diff --git a/tests/Components/RenameOperationTest.php b/tests/Components/RenameOperationTest.php
index cb0075f..919c4bd 100644
--- a/tests/Components/RenameOperationTest.php
+++ b/tests/Components/RenameOperationTest.php
@@ -2,8 +2,8 @@
namespace PhpMyAdmin\SqlParser\Tests\Components;
-use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Components\RenameOperation;
+use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Tests\TestCase;
class RenameOperationTest extends TestCase