Completed
Push — master ( 7f55a3...b396b0 )
by Дмитрий
02:37
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/Definition/ClassDefinition.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -187,8 +187,8 @@
 block discarded – undo
187 187
     }
188 188
 
189 189
     /**
190
-     * @param $name
191
-     * @return CompiledExpression
190
+     * @param string $name
191
+     * @return Node\Stmt\Property
192 192
      */
193 193
     public function getProperty($name)
194 194
     {
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.