Completed
Push — master ( 8419d7...269912 )
by Дмитрий
03:29
created
src/Context.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -320,7 +320,7 @@
 block discarded – undo
320 320
     }
321 321
 
322 322
     /**
323
-     * @return string|integer|null
323
+     * @return integer
324 324
      */
325 325
     public function getCurrentBranch()
326 326
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use PHPSA\Compiler\Expression;
9 9
 use PHPSA\Compiler\GlobalVariable;
10 10
 use PHPSA\Definition\AbstractDefinition;
11
-use PHPSA\Definition\ParentDefinition;
12 11
 use Symfony\Component\Console\Output\OutputInterface;
13 12
 use Webiny\Component\EventManager\EventManager;
14 13
 
Please login to merge, or discard this patch.
src/ControlFlow/ControlFlowGraph.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
 
143 143
     /**
144 144
      * @param \PhpParser\Node\Expr $expr
145
-     * @return Node\AbstractNode
145
+     * @return Node\AbstractNode|null
146 146
      */
147 147
     protected function passExpr(\PhpParser\Node\Expr $expr)
148 148
     {
Please login to merge, or discard this patch.
src/Command/CheckCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use RecursiveIteratorIterator;
15 15
 use SplFileInfo;
16 16
 use FilesystemIterator;
17
-use Symfony\Component\Config\FileLocator;
18 17
 use Symfony\Component\Console\Input\InputArgument;
19 18
 use Symfony\Component\Console\Input\InputInterface;
20 19
 use Symfony\Component\Console\Input\InputOption;
Please login to merge, or discard this patch.
src/Command/CompileCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace PHPSA\Command;
4 4
 
5
-use PhpParser\ParserFactory;
6 5
 use PHPSA\Application;
7 6
 use PHPSA\Compiler;
8 7
 use PHPSA\Context;
Please login to merge, or discard this patch.
src/Command/PrintCFGCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace PHPSA\Command;
4 4
 
5 5
 use FilesystemIterator;
6
-use PhpParser\ParserFactory;
7 6
 use PHPSA\Application;
8 7
 use PHPSA\Compiler;
9 8
 use PHPSA\Context;
Please login to merge, or discard this patch.
src/Configuration.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      * Create a configuration from array.
30 30
      *
31 31
      * @param array $configuration
32
-     * @param array $analyzersConfiguration
32
+     * @param \Symfony\Component\Config\Definition\Builder\NodeDefinition[] $analyzersConfiguration
33 33
      */
34 34
     public function __construct(array $configuration = [], array $analyzersConfiguration = [], $path = "")
35 35
     {
Please login to merge, or discard this patch.