Test Failed
Branch master (cb46a0)
by Marc
14:28
created
src/Inigo/Parser.php 2 patches
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,6 +149,7 @@  discard block
 block discarded – undo
149 149
 
150 150
     /**
151 151
      *
152
+     * @param string $name
152 153
      */
153 154
     public function addSetting($name, $value = '')
154 155
     {
@@ -226,6 +227,7 @@  discard block
 block discarded – undo
226 227
 
227 228
     /**
228 229
      *
230
+     * @param string $s
229 231
      */
230 232
     public function parse($s)
231 233
     {
@@ -462,7 +464,7 @@  discard block
 block discarded – undo
462 464
     /**
463 465
      * Formats whole blocks of CDATA
464 466
      *
465
-     * @param  &string $cdata
467
+     * @param  string $cdata
466 468
      * @param  boolean $outline
467 469
      * @return string
468 470
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -454,7 +454,7 @@
 block discarded – undo
454 454
             $last_tag = null;
455 455
         }
456 456
 
457
-        $e = function ($s) { return htmlspecialchars($s, ENT_QUOTES, 'UTF-8'); };
457
+        $e = function($s) { return htmlspecialchars($s, ENT_QUOTES, 'UTF-8'); };
458 458
 
459 459
         return $e($s);
460 460
     }
Please login to merge, or discard this patch.
src/Inigo/Tag.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -109,6 +109,7 @@
 block discarded – undo
109 109
 
110 110
     /**
111 111
      *
112
+     * @param integer $tagType
112 113
      * @return boolean
113 114
      */
114 115
     public function isOfType($tagType)
Please login to merge, or discard this patch.
src/Xml/Rule/TocRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
             $node->setAttribute('id', $identifierFormatted);
68 68
 
69 69
             if ($thisDepth > $curDepth) {
70
-                $toc .= "\n".str_repeat('  ', $thisDepth - 1)."<ul>\n";
70
+                $toc .= "\n" . str_repeat('  ', $thisDepth - 1) . "<ul>\n";
71 71
             } elseif ($i > 0) {
72 72
                 $toc .= "</li>\n";
73 73
             }
Please login to merge, or discard this patch.
src/Xml/Rule/AbstractRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
             $newList = array();
108 108
 
109 109
             // Traverse the tree
110
-            $rec = function ($node) use (&$rec, &$newList, &$arrayList) {
110
+            $rec = function($node) use (&$rec, &$newList, &$arrayList) {
111 111
                 /* @var $node DOMElement */
112 112
 
113 113
                 foreach ($arrayList as $index => $compareNode) {
Please login to merge, or discard this patch.
src/Xml/Rule/ListingsRule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
             $caption  = (string) $node->getAttribute('caption');
48 48
 
49 49
             $file = (string) $node->getAttribute('file');
50
-            $from =  $node->getAttribute('from');
50
+            $from = $node->getAttribute('from');
51 51
             $length = $node->getAttribute('length');
52 52
 
53 53
             if ($from === '') {
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
                     $class = 'line';
178 178
                 }
179 179
 
180
-                $code[$i] = '<span class="'.$class.'" id="hic-svnt-dracones">'
180
+                $code[$i] = '<span class="' . $class . '" id="hic-svnt-dracones">'
181 181
                         . $code[$i]
182 182
                         . '</span>';
183 183
 
Please login to merge, or discard this patch.
src/Xml/Rule/FootnotesRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@
 block discarded – undo
175 175
 
176 176
             $xml .= '<li id="' . $id . '">';
177 177
             $xml .= $text;
178
-            $xml .= ' <a href="#'.$idRef.'">'."\xE2\x86\x91".'</a>';
178
+            $xml .= ' <a href="#' . $idRef . '">' . "\xE2\x86\x91" . '</a>';
179 179
             $xml .= '</li>';
180 180
 
181 181
             $i++;
Please login to merge, or discard this patch.
src/Inigo/Handler/AmazonHandler.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -32,12 +32,12 @@
 block discarded – undo
32 32
                 . '.01._SCMZZZZZZZ_V65020934_.jpg';
33 33
 
34 34
         $ret = '<div class="amazon clear">'
35
-             . '<div class="img-border">'
36
-             . '<div class="img" style="background-image: url(' . $this->e($img) . ');"></div>'
37
-             . '</div>'
38
-             . '<p class="title"><strong>' . $this->e($title) . '</strong></p>'
39
-             . '<p class="author">' . $this->e($author) . '</p>'
40
-             . '</div>';
35
+                . '<div class="img-border">'
36
+                . '<div class="img" style="background-image: url(' . $this->e($img) . ');"></div>'
37
+                . '</div>'
38
+                . '<p class="title"><strong>' . $this->e($title) . '</strong></p>'
39
+                . '<p class="author">' . $this->e($author) . '</p>'
40
+                . '</div>';
41 41
 
42 42
         return $ret;
43 43
     }
Please login to merge, or discard this patch.
src/Inigo/Handler/ImgHandler.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -64,29 +64,29 @@
 block discarded – undo
64 64
 
65 65
         if ($align == Parser::PC_IMG_ALIGN_RIGHT) {
66 66
             $ret .= '<div class="img">' . "\n"
67
-                  . '  <div class="img_right" style="' . $style . '">' . "\n"
68
-                  . '    <div class="img_border">' . "\n"
69
-                  . '      <img src="' . $this->e($path) . '" alt="Bild: ' . $this->e($alt) . '" title="'
70
-                      . $this->e($alt) . '" ' . $attr . ' />' . "\n"
71
-                  . '    </div>' . "\n"
72
-                  . '    <div class="img_content">';
67
+                    . '  <div class="img_right" style="' . $style . '">' . "\n"
68
+                    . '    <div class="img_border">' . "\n"
69
+                    . '      <img src="' . $this->e($path) . '" alt="Bild: ' . $this->e($alt) . '" title="'
70
+                        . $this->e($alt) . '" ' . $attr . ' />' . "\n"
71
+                    . '    </div>' . "\n"
72
+                    . '    <div class="img_content">';
73 73
         } elseif ($align == Parser::PC_IMG_ALIGN_CENTER) {
74 74
             $ret .= '<div class="center">' . "\n"
75
-                  . '  <div class="img">' . "\n"
76
-                  . '    <div class="img_center" style="' . $style . '">' . "\n"
77
-                  . '      <div class="img_border">' . "\n"
78
-                  . '        <img src="' . $this->e($path) . '" alt="Bild: ' . $this->e($alt) . '" title="'
79
-                      . $this->e($alt) . '" ' . $attr . ' />' . "\n"
80
-                  . '      </div>' . "\n"
81
-                  . '      <div class="img_content">';
75
+                    . '  <div class="img">' . "\n"
76
+                    . '    <div class="img_center" style="' . $style . '">' . "\n"
77
+                    . '      <div class="img_border">' . "\n"
78
+                    . '        <img src="' . $this->e($path) . '" alt="Bild: ' . $this->e($alt) . '" title="'
79
+                        . $this->e($alt) . '" ' . $attr . ' />' . "\n"
80
+                    . '      </div>' . "\n"
81
+                    . '      <div class="img_content">';
82 82
         } elseif ($align == Parser::PC_IMG_ALIGN_LEFT) {
83 83
             $ret .= '<div class="img">' . "\n"
84
-                  . '  <div class="img_left" style="' . $style . '">' . "\n"
85
-                  . '    <div class="img_border">' . "\n"
86
-                  . '      <img src="' . $this->e($path) . '" alt="Bild: ' . $this->e($alt) . '" title="'
87
-                      . $this->e($alt) . '" ' . $attr . ' />' . "\n"
88
-                  . '    </div>' . "\n"
89
-                  . '    <div class="img_content">';
84
+                    . '  <div class="img_left" style="' . $style . '">' . "\n"
85
+                    . '    <div class="img_border">' . "\n"
86
+                    . '      <img src="' . $this->e($path) . '" alt="Bild: ' . $this->e($alt) . '" title="'
87
+                        . $this->e($alt) . '" ' . $attr . ' />' . "\n"
88
+                    . '    </div>' . "\n"
89
+                    . '    <div class="img_content">';
90 90
         }
91 91
 
92 92
         return $ret;
Please login to merge, or discard this patch.
src/SyntaxHighlighter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      */
17 17
     public function highlight($source, $language = '')
18 18
     {
19
-        $e = function ($s) {
19
+        $e = function($s) {
20 20
             return htmlspecialchars($s, ENT_QUOTES, 'UTF-8');
21 21
         };
22 22
 
Please login to merge, or discard this patch.