Test Setup Failed
Branch master (cdb05b)
by Richard
03:03
created
src/Definition/Fluid/ExistingVar.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
  */
10 10
 
11 11
 namespace Lechimp\Dicto\Definition\Fluid;
12
-use Lechimp\Dicto\Definition as Def;
13 12
 
14 13
 /**
15 14
  * Provides fluid interface to entities that were already defined before, at
Please login to merge, or discard this patch.
src/Definition/Fluid/With.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     /**
19 19
      * Say to mean only artifacts whose name matches the provided regexp.
20 20
      *
21
-     * @param   string  $regex
21
+     * @param   string  $regexp
22 22
      * @return  ExistingVar
23 23
      */
24 24
     public function name($regexp) {
Please login to merge, or discard this patch.
src/Definition/Rules/DependOn.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@
 block discarded – undo
17 17
      */
18 18
     private $dependency;
19 19
 
20
+    /**
21
+     * @param string $mode
22
+     */
20 23
     public function __construct($mode, Vars\Variable $left, Vars\Variable $dependency) {
21 24
         parent::__construct($mode, $left);
22 25
         $this->dependency = $dependency;
Please login to merge, or discard this patch.
src/Definition/Rules/Invoke.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@  discard block
 block discarded – undo
17 17
      */
18 18
     private $invokes;
19 19
 
20
+    /**
21
+     * @param string $mode
22
+     */
20 23
     public function __construct($mode, Vars\Variable $left, Vars\Variable $invokes) {
21 24
         parent::__construct($mode, $left);
22 25
         $this->invokes = $invokes;
@@ -28,7 +31,7 @@  discard block
 block discarded – undo
28 31
     }
29 32
 
30 33
     /**
31
-     * @return Variable
34
+     * @return Vars\Variable
32 35
      */
33 36
     public function invokes() {
34 37
         return $this->invokes;
Please login to merge, or discard this patch.
src/Definition/Rules/Rule.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     /**
50 50
      * Definition of the entities this rule was defined for.
51 51
      *
52
-     * @return  Variable
52
+     * @return  Vars\Variable
53 53
      */
54 54
     public function subject() {
55 55
         return $this->subject;
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      * is not subject() if the mode is MODE_ONLY_CAN, as this really says
63 63
      * something about the other entities.
64 64
      *
65
-     * @return  Variable
65
+     * @return  Vars\Variable
66 66
      */
67 67
     public function checked_on() {
68 68
         if ($this->mode() == self::MODE_ONLY_CAN) {
Please login to merge, or discard this patch.
src/Indexer/PhpParser/DependenciesListener.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 namespace Lechimp\Dicto\Indexer\PhpParser;
12 12
 
13 13
 use Lechimp\Dicto\Analysis\Consts;
14
-use Lechimp\Dicto\Indexer as I;
15 14
 use PhpParser\Node as N;
16 15
 
17 16
 /**
Please login to merge, or discard this patch.
src/Indexer/PhpParser/InvocationsListener.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 namespace Lechimp\Dicto\Indexer\PhpParser;
12 12
 
13 13
 use Lechimp\Dicto\Analysis\Consts;
14
-use Lechimp\Dicto\Indexer as I;
15 14
 use PhpParser\Node as N;
16 15
 
17 16
 /**
Please login to merge, or discard this patch.