Completed
Pull Request — 3.0 (#5)
by Huberty
03:23 queued 01:31
created
src/Mouf/Mail.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     /**
121 121
      * Returns the mail title.
122 122
      *
123
-     * @return string
123
+     * @return HtmlElementInterface
124 124
      */
125 125
     public function getTitle():string
126 126
     {
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
     /**
131 131
      * The mail title.
132 132
      *
133
-     * @param string $title
133
+     * @param HtmlElementInterface $title
134 134
      */
135 135
     public function setTitle(HtmlElementInterface $title)
136 136
     {
Please login to merge, or discard this patch.
src/Mouf/Utils/Mailer/Mail.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 	 * The mail html body.
80 80
 	 *
81 81
 	 * @Property
82
-	 * @param string $bodyHtml
82
+	 * @param HtmlElementInterface $bodyHtml
83 83
 	 */
84 84
 	public function setBodyHtml($bodyHtml) {
85 85
 		$this->bodyHtml = $bodyHtml;
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 	/**
89 89
 	 * Returns the mail title.
90 90
 	 *
91
-	 * @return string
91
+	 * @return HtmlElementInterface
92 92
 	 */
93 93
 	public function getTitle() {
94 94
 		return $this->title;
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 	 * The mail title.
99 99
 	 *
100 100
 	 * @Property
101
-	 * @param string $title
101
+	 * @param HtmlElementInterface $title
102 102
 	 */
103 103
 	public function setTitle($title) {
104 104
 		$this->title = $title;
Please login to merge, or discard this patch.