Test Failed
Branch master (cb46a0)
by Marc
14:28
created
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.