Passed
Branch master (575344)
by Kris
02:10
created
lib/HtmlElements/RowButton.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,9 +36,9 @@
 block discarded – undo
36 36
     private $buttonText = '';
37 37
 
38 38
       /**
39
-     * @access private
40
-     * @var string $buttonSrc
41
-     */
39
+       * @access private
40
+       * @var string $buttonSrc
41
+       */
42 42
     private $buttonSrc = '';
43 43
 
44 44
     /**
Please login to merge, or discard this patch.
lib/HtmlElements/Image.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -60,14 +60,14 @@
 block discarded – undo
60 60
     private $imageMaxHeight = null;
61 61
 
62 62
      /**
63
-     * Constructor
64
-     * 
65
-     * @access public
66
-     * @param string    $src       The image source
67
-     * @param int       $width     The image width
68
-     * @param string    $title     The image title
69
-     * @param string    $alt       The image alt
70
-     */
63
+      * Constructor
64
+      * 
65
+      * @access public
66
+      * @param string    $src       The image source
67
+      * @param int       $width     The image width
68
+      * @param string    $title     The image title
69
+      * @param string    $alt       The image alt
70
+      */
71 71
     public function __construct(string $src, int $width, string $title = '', string $alt = '')
72 72
     {
73 73
         $this->imageSrc   = $src;
Please login to merge, or discard this patch.
lib/HtmlElements/Link.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,9 +39,9 @@
 block discarded – undo
39 39
     private $linkTitle = '';
40 40
 
41 41
      /**
42
-     * @access private
43
-     * @var string $content
44
-     */
42
+      * @access private
43
+      * @var string $content
44
+      */
45 45
     protected $content = '';
46 46
 
47 47
     /**
Please login to merge, or discard this patch.
lib/HtmlElements/RowImage.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -27,17 +27,17 @@
 block discarded – undo
27 27
 class RowImage extends Row
28 28
 {
29 29
      /**
30
-     * @access private
31
-     * @var Image   $image
32
-     */
30
+      * @access private
31
+      * @var Image   $image
32
+      */
33 33
     private $image = null;
34 34
 
35 35
      /**
36
-     * Constructor
37
-     * 
38
-     * @access public
39
-     * @param Image     $img
40
-     */
36
+      * Constructor
37
+      * 
38
+      * @access public
39
+      * @param Image     $img
40
+      */
41 41
     public function __construct(Image $img)
42 42
     {
43 43
         $this->add($img);
Please login to merge, or discard this patch.
lib/Core/ContainerPaddingTrait.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -42,11 +42,11 @@
 block discarded – undo
42 42
     protected $removePaddingTop = false;
43 43
 
44 44
     /** 
45
-    * True to remove bottom padding. Default is false  
46
-    * 
47
-    * @access protected
48
-    * @var bool     $removePaddingTop
49
-    */
45
+     * True to remove bottom padding. Default is false  
46
+     * 
47
+     * @access protected
48
+     * @var bool     $removePaddingTop
49
+     */
50 50
     protected $removePaddingBottom = false;
51 51
  
52 52
     /** 
Please login to merge, or discard this patch.
lib/Core/HtmlBuilder.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -120,20 +120,20 @@
 block discarded – undo
120 120
     protected $emailBodyColor = self::COLOR_GRAY_600;
121 121
     
122 122
      /** 
123
-     * Defines the main text color for the email body
124
-     * 
125
-     * @access protected
126
-     * @var string  $emailBodyColor
127
-     */
123
+      * Defines the main text color for the email body
124
+      * 
125
+      * @access protected
126
+      * @var string  $emailBodyColor
127
+      */
128 128
     protected $emailheaddingColor = self::COLOR_GRAY_900;
129 129
 
130 130
      /** 
131
-     * Defines the email body background color
132
-     * Default is #FFFFFF white
133
-     * 
134
-     * @access protected
135
-     * @var string  $emailBodyBackgroundColor
136
-     */
131
+      * Defines the email body background color
132
+      * Default is #FFFFFF white
133
+      * 
134
+      * @access protected
135
+      * @var string  $emailBodyBackgroundColor
136
+      */
137 137
     protected $emailBodyBackgroundColor = self::COLOR_WHITE;
138 138
   
139 139
     /** 
Please login to merge, or discard this patch.