Completed
Push — master ( b280db...3fdb6d )
by Freek
02:18
created
src/NodeVisitors/AnonymousClassReplacer.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
     /**
101 101
      * @param array $nodes
102 102
      * @param $hookIndex
103
-     * @param $anonymousClassStatements
103
+     * @param Node[] $anonymousClassStatements
104 104
      * 
105 105
      * @return array
106 106
      */
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@
 block discarded – undo
3 3
 namespace Spatie\Php7to5\NodeVisitors;
4 4
 
5 5
 use PhpParser\Node;
6
+use PhpParser\NodeVisitorAbstract;
6 7
 use PhpParser\Node\Expr\BinaryOp\Coalesce;
7 8
 use PhpParser\Node\Expr\FuncCall;
8 9
 use PhpParser\Node\Expr\Ternary;
9 10
 use PhpParser\Node\Name;
10
-use PhpParser\NodeVisitorAbstract;
11 11
 
12 12
 class NullCoalesceReplacer extends NodeVisitorAbstract
13 13
 {
Please login to merge, or discard this patch.