Completed
Push — master ( 31b6cd...280baa )
by Дмитрий
07:47
created
src/Analyzer/AstTraverser.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     private $cloneNodes = false;
17 17
 
18 18
     /**
19
-     * @param array $visitors
19
+     * @param \PHPSA\Node\Visitor\FunctionCall[] $visitors
20 20
      * @param Context $context
21 21
      */
22 22
     public function __construct(array $visitors, Context $context)
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 
6 6
 namespace PHPSA\Analyzer;
7 7
 
8
-use PhpParser\NodeVisitor;
9 8
 use PHPSA\Context;
10 9
 
11 10
 class AstTraverser extends \PhpParser\NodeTraverser
Please login to merge, or discard this patch.
src/Compiler/Statement/ForeachSt.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * @param \PhpParser\Node\Stmt\Foreach_ $stmt
19 19
      * @param Context $context
20
-     * @return CompiledExpression
20
+     * @return null|boolean
21 21
      */
22 22
     public function compile($stmt, Context $context)
23 23
     {
Please login to merge, or discard this patch.
src/Context.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@
 block discarded – undo
241 241
     }
242 242
 
243 243
     /**
244
-     * @return int|string
244
+     * @return integer
245 245
      */
246 246
     public function getCurrentBranch()
247 247
     {
Please login to merge, or discard this patch.
src/Definition/ClassDefinition.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
200 200
     }
201 201
 
202 202
     /**
203
-     * @param $name
203
+     * @param string $name
204 204
      * @param bool $inherit
205 205
      * @return Node\Stmt\Property
206 206
      */
Please login to merge, or discard this patch.