Passed
Push — master ( b3c755...d4cc84 )
by Fabio
07:12
created
framework/Web/UI/TClientScriptManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
 	 */
258 258
 	public function getScriptUrls()
259 259
 	{
260
-		$scripts = array_values(array_map(function ($v) {
260
+		$scripts = array_values(array_map(function($v) {
261 261
 			return $v->getUrl();
262 262
 		}, $this->_headScriptFiles));
263 263
 		$scripts = array_merge($scripts, array_values($this->_scriptFiles));
@@ -550,7 +550,7 @@  discard block
 block discarded – undo
550 550
 	public function getStyleSheetUrls()
551 551
 	{
552 552
 		$stylesheets = array_values(
553
-			array_map(function ($e) {
553
+			array_map(function($e) {
554 554
 				return is_array($e) ? $e[0] : $e;
555 555
 			}, $this->_styleSheetFiles)
556 556
 		);
Please login to merge, or discard this patch.