Skip to content

Commit 77c4e59

Browse files
patinthehatactions-user
authored andcommitted
Fix styling
1 parent 1de7f18 commit 77c4e59

5 files changed

Lines changed: 0 additions & 10 deletions

File tree

src/Searcher.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,11 @@
99
use Permafrost\PhpCodeSearch\Support\NodeSearch;
1010
use Permafrost\PhpCodeSearch\Support\VirtualFile;
1111
use Permafrost\PhpCodeSearch\Visitors\AssignmentVisitor;
12-
use Permafrost\PhpCodeSearch\Visitors\CommentVisitor;
1312
use Permafrost\PhpCodeSearch\Visitors\FunctionCallVisitor;
1413
use Permafrost\PhpCodeSearch\Visitors\MethodCallVisitor;
1514
use Permafrost\PhpCodeSearch\Visitors\NewClassVisitor;
1615
use Permafrost\PhpCodeSearch\Visitors\StaticCallVisitor;
1716
use Permafrost\PhpCodeSearch\Visitors\VariableCallVisitor;
18-
use PhpParser\Comment;
1917
use PhpParser\Error;
2018
use PhpParser\Node;
2119
use PhpParser\Node\Expr\FuncCall;

src/Visitors/AssignmentVisitor.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
namespace Permafrost\PhpCodeSearch\Visitors;
55

6-
76
use Permafrost\PhpCodeSearch\Code\GenericCodeLocation;
87
use Permafrost\PhpCodeSearch\Results\FileSearchResults;
98
use Permafrost\PhpCodeSearch\Results\Nodes\AssignmentNode;
@@ -36,5 +35,4 @@ public function enterNode(Node $node)
3635
$this->results->add($resultNode, $location);
3736
}
3837
}
39-
4038
}

src/Visitors/CommentVisitor.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,4 @@ public function enterNode(Node $node)
3838
}
3939
}
4040
}
41-
4241
}

src/Visitors/FunctionCallVisitor.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,7 @@
44

55
use Permafrost\PhpCodeSearch\Code\GenericCodeLocation;
66
use Permafrost\PhpCodeSearch\Results\FileSearchResults;
7-
use Permafrost\PhpCodeSearch\Results\Nodes\AssignmentNode;
87
use Permafrost\PhpCodeSearch\Results\Nodes\FunctionCallNode;
9-
use Permafrost\PhpCodeSearch\Results\Nodes\MethodCallNode;
10-
use Permafrost\PhpCodeSearch\Results\Nodes\StaticMethodCallNode;
11-
use Permafrost\PhpCodeSearch\Results\Nodes\VariableNode;
128
use Permafrost\PhpCodeSearch\Support\Arr;
139
use PhpParser\Node;
1410
use PhpParser\Node\Expr\FuncCall;

src/Visitors/VariableCallVisitor.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
namespace Permafrost\PhpCodeSearch\Visitors;
55

6-
76
use Permafrost\PhpCodeSearch\Code\GenericCodeLocation;
87
use Permafrost\PhpCodeSearch\Results\FileSearchResults;
98
use Permafrost\PhpCodeSearch\Results\Nodes\VariableNode;

0 commit comments

Comments
 (0)