@@ -36,9 +36,9 @@ |
||
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 | /** |
@@ -60,14 +60,14 @@ |
||
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; |
@@ -39,9 +39,9 @@ |
||
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 | /** |
@@ -27,17 +27,17 @@ |
||
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); |
@@ -42,11 +42,11 @@ |
||
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 | /** |
@@ -120,20 +120,20 @@ |
||
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 | /** |