summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/ContextGenerator.php6
-rw-r--r--tools/TestGenerator.php6
2 files changed, 6 insertions, 6 deletions
diff --git a/tools/ContextGenerator.php b/tools/ContextGenerator.php
index 43ea315..82c17e1 100644
--- a/tools/ContextGenerator.php
+++ b/tools/ContextGenerator.php
@@ -1,6 +1,6 @@
<?php
-namespace SqlParser\Tools;
+namespace PhpMyAdmin\SqlParser\Tools;
require_once __DIR__ . '/../vendor/autoload.php';
@@ -60,9 +60,9 @@ class ContextGenerator
' * @see %3$s' . "\n" .
' */' . "\n" .
'' . "\n" .
- 'namespace SqlParser\\Contexts;' . "\n" .
+ 'namespace PhpMyAdmin\\SqlParser\\Contexts;' . "\n" .
'' . "\n" .
- 'use SqlParser\\Context;' . "\n" .
+ 'use PhpMyAdmin\\SqlParser\\Context;' . "\n" .
'' . "\n" .
'/**' . "\n" .
' * Context for %1$s.' . "\n" .
diff --git a/tools/TestGenerator.php b/tools/TestGenerator.php
index b4820ce..e802343 100644
--- a/tools/TestGenerator.php
+++ b/tools/TestGenerator.php
@@ -1,11 +1,11 @@
<?php
-namespace SqlParser\Tools;
+namespace PhpMyAdmin\SqlParser\Tools;
require_once '../vendor/autoload.php';
-use SqlParser\Lexer;
-use SqlParser\Parser;
+use PhpMyAdmin\SqlParser\Lexer;
+use PhpMyAdmin\SqlParser\Parser;
/**
* Used for test generation.