diff options
author | Michal Čihař <michal@cihar.com> | 2017-01-23 13:09:31 +0100 |
---|---|---|
committer | Michal Čihař <michal@cihar.com> | 2017-01-23 13:09:31 +0100 |
commit | 428edcc891e802a1eb348ab9763f7b69bea99082 (patch) | |
tree | 605598cc102e8c6122703ad063b9e18fabb065ba /tests/Utils/QueryTest.php | |
parent | 65f66eb7b6ca98218184f3ab39f6d0de08d7e8d8 (diff) | |
download | sql-parser-428edcc891e802a1eb348ab9763f7b69bea99082.zip sql-parser-428edcc891e802a1eb348ab9763f7b69bea99082.tar.gz sql-parser-428edcc891e802a1eb348ab9763f7b69bea99082.tar.bz2 |
Added PhpMyAdmin namespace prefix to follow PSR-4.
Fixes #126
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'tests/Utils/QueryTest.php')
-rw-r--r-- | tests/Utils/QueryTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/Utils/QueryTest.php b/tests/Utils/QueryTest.php index 28b24ad..a942064 100644 --- a/tests/Utils/QueryTest.php +++ b/tests/Utils/QueryTest.php @@ -1,10 +1,10 @@ <?php -namespace SqlParser\Tests\Utils; +namespace PhpMyAdmin\SqlParser\Tests\Utils; -use SqlParser\Parser; -use SqlParser\Utils\Query; -use SqlParser\Tests\TestCase; +use PhpMyAdmin\SqlParser\Parser; +use PhpMyAdmin\SqlParser\Utils\Query; +use PhpMyAdmin\SqlParser\Tests\TestCase; class QueryTest extends TestCase { |