Move TokenStream into Internal namespace

This commit is contained in:
Nikita Popov 2018-01-27 13:40:20 +01:00
parent 6a273c9fbd
commit d817818b5d
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<?php declare(strict_types=1);
namespace PhpParser;
namespace PhpParser\Internal;
/**
* Provides operations on token streams, for use by pretty printer.

View File

@ -4,6 +4,7 @@ namespace PhpParser;
use PhpParser\Internal\DiffElem;
use PhpParser\Internal\PrintableNewAnonClassNode;
use PhpParser\Internal\TokenStream;
use PhpParser\Node\Expr;
use PhpParser\Node\Expr\AssignOp;
use PhpParser\Node\Expr\BinaryOp;