1
0
Fork 0

Move NodeVisitors to own namespace

pull/49/head
Felix Becker 2016-10-08 12:59:22 +02:00
parent 6cb916e28d
commit 063c7f9ad2
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
<?php
declare(strict_types = 1);
namespace LanguageServer;
namespace LanguageServer\NodeVisitors;
use PhpParser\{NodeVisitorAbstract, Node};

View File

@ -1,7 +1,7 @@
<?php
declare(strict_types = 1);
namespace LanguageServer;
namespace LanguageServer\NodeVisitors;
use PhpParser\{NodeVisitorAbstract, Node};

View File

@ -3,8 +3,8 @@ declare(strict_types = 1);
namespace LanguageServer;
use \LanguageServer\Protocol\{Diagnostic, DiagnosticSeverity, Range, Position, SymbolKind, TextEdit};
use LanguageServer\Protocol\{Diagnostic, DiagnosticSeverity, Range, Position, SymbolKind, TextEdit};
use LanguageServer\NodeVisitors\{SymbolFinder, ColumnCalculator};
use PhpParser\{Error, Comment, Node, ParserFactory, NodeTraverser, Lexer, Parser};
use PhpParser\PrettyPrinter\Standard as PrettyPrinter;
use PhpParser\NodeVisitor\NameResolver;