diff options
-rw-r--r-- | Praspel.php | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Praspel.php b/Praspel.php index 01493a2..1531aad 100644 --- a/Praspel.php +++ b/Praspel.php @@ -34,7 +34,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -namespace Hoa\Praspel; +namespace Hoa\Praspel { use Hoa\Compiler; use Hoa\Core; @@ -133,6 +133,10 @@ class Praspel */ Core\Consistency::flexEntity('Hoa\Praspel\Praspel'); +} + +namespace { + /** * Alias of \Hoa\Praspel::interpret(). * @@ -142,6 +146,8 @@ Core\Consistency::flexEntity('Hoa\Praspel\Praspel'); if (!function_exists('praspel')) { function praspel($praspel) { - return Praspel::interpret($praspel); + return Hoa\Praspel::interpret($praspel); } } + +} |