Failed Conditions
Branch master (60bef7)
by Rick
01:56
created
src/PhpAssumptions/Analyser.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     private $result;
36 36
 
37 37
     /**
38
-     * @param ParserAbstract         $parser
38
+     * @param Multiple         $parser
39 39
      * @param NodeTraverserInterface $nodeTraverser
40 40
      */
41 41
     public function __construct(
@@ -78,6 +78,9 @@  discard block
 block discarded – undo
78 78
         $this->result->increaseBoolExpressionsCount();
79 79
     }
80 80
 
81
+    /**
82
+     * @param integer $line
83
+     */
81 84
     private function readLine($line)
82 85
     {
83 86
         if (count($this->currentFile) === 0) {
Please login to merge, or discard this patch.
src/PhpAssumptions/Output/XmlOutput.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
         $assumptions = $result->getAssumptions();
56 56
 
57 57
         foreach ($assumptions as $assumption) {
58
-            $fileElements = $this->xpath->query('/phpa/files/file[@name="' . $assumption['file'] . '"]');
58
+            $fileElements = $this->xpath->query('/phpa/files/file[@name="'.$assumption['file'].'"]');
59 59
 
60 60
             if ($fileElements->length === 0) {
61 61
                 $files = $this->xpath->query('/phpa/files')->item(0);
Please login to merge, or discard this patch.