diff options
author | Michal Čihař <michal@cihar.com> | 2017-02-13 12:03:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-13 12:03:38 +0100 |
commit | 802d17a88c3b86ccae5914dc0db83ac37b286d09 (patch) | |
tree | fe07e92d0b6d26bdabbda0ca38657d615a2e2e0a /tests/Builder/StatementTest.php | |
parent | c0a420d542a5f46b8b3ecf7fff0cb6bd8f521552 (diff) | |
parent | 557fa33ae37f8bfb95d6f415e0d4ad43cf20093e (diff) | |
download | sql-parser-802d17a88c3b86ccae5914dc0db83ac37b286d09.zip sql-parser-802d17a88c3b86ccae5914dc0db83ac37b286d09.tar.gz sql-parser-802d17a88c3b86ccae5914dc0db83ac37b286d09.tar.bz2 |
Merge pull request #136 from bigfoot90/cs-fix-order-imports
Cs fix order imports
Diffstat (limited to 'tests/Builder/StatementTest.php')
-rw-r--r-- | tests/Builder/StatementTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Builder/StatementTest.php b/tests/Builder/StatementTest.php index 2651b28..e2c0cb7 100644 --- a/tests/Builder/StatementTest.php +++ b/tests/Builder/StatementTest.php @@ -2,10 +2,10 @@ namespace PhpMyAdmin\SqlParser\Tests\Builder; -use PhpMyAdmin\SqlParser\Components\OptionsArray; -use PhpMyAdmin\SqlParser\Components\Expression; use PhpMyAdmin\SqlParser\Components\Condition; +use PhpMyAdmin\SqlParser\Components\Expression; use PhpMyAdmin\SqlParser\Components\Limit; +use PhpMyAdmin\SqlParser\Components\OptionsArray; use PhpMyAdmin\SqlParser\Statements\SelectStatement; use PhpMyAdmin\SqlParser\Tests\TestCase; |