Completed
Push — 3.2 ( 169e53 )
by David
12s
created
src/Mouf/Html/Utils/WebLibraryManager/WebLibrary.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
 	 * <p>If you don't specify http:// or https:// and if the file does not start with /, the file is considered to be relative to ROOT_URL.</p>
112 112
 	 * <div class="info">It is a good practice to make sure the file does not start with /, http:// or https:// (unless you are using a CDN).</div>
113 113
 	 * 
114
-	 * @param string $jsFile
114
+	 * @param string $cssFile
115 115
 	 */
116 116
 	public function addCssFile($cssFile) {
117 117
 		$this->cssFiles[] = $cssFile;
Please login to merge, or discard this patch.
src/Mouf/Html/Utils/WebLibraryManager/InlineWebLibrary.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 	
182 182
 	/**
183 183
 	 * A custom Html element that will be inserted into the JS scripts into your &lt;head&gt; tag.
184
-	 * @return the HtmlElementInterface
184
+	 * @return HtmlElementInterface HtmlElementInterface
185 185
 	 */
186 186
 	public function getJsElement() {
187 187
 		return $this->jsElement;
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
 	
190 190
 	/**
191 191
 	 * A custom CSS element that will be inserted into the JS scripts into your &lt;head&gt; tag.
192
-	 * @return the HtmlElementInterface
192
+	 * @return HtmlElementInterface HtmlElementInterface
193 193
 	 */
194 194
 	public function getCssElement() {
195 195
 		return $this->cssElement;
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 	/**
199 199
 	 * A custom Html element that will be inserted into the additional scripts into your &lt;head&gt; tag.
200 200
 	 * The content of this file is displayed BELOW JS and CSS inclusion.
201
-	 * @return the HtmlElementInterface
201
+	 * @return HtmlElementInterface HtmlElementInterface
202 202
 	 */
203 203
 	public function getAdditionalElement() {
204 204
 		return $this->additionalElement;
Please login to merge, or discard this patch.