Completed
Push — master ( 71eeba...e9a5d3 )
by Roberto
04:30 queued 59s
created
src/Component/Component.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
 		if (null === $this->prefix)
116 116
 		{
117 117
 			$parts = array_map(
118
-				function ($part)
118
+				function($part)
119 119
 				{
120 120
 					return ucfirst(strtolower($part));
121 121
 				},
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -219,7 +219,7 @@
 block discarded – undo
219 219
 	/**
220 220
 	 * Save parameters to database.
221 221
 	 *
222
-	 * @return  Registry
222
+	 * @return  boolean
223 223
 	 */
224 224
 	public function saveParams()
225 225
 	{
Please login to merge, or discard this patch.
src/Module/Module.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 	 *
112 112
 	 * @param   string  $layoutId  Layout identifier
113 113
 	 *
114
-	 * @return  mixed   string | false
114
+	 * @return  string   string | false
115 115
 	 */
116 116
 	private function getLayoutPath($layoutId)
117 117
 	{
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
 	/**
350 350
 	 * Save parameters to database.
351 351
 	 *
352
-	 * @return  Registry
352
+	 * @return  boolean
353 353
 	 */
354 354
 	public function saveParams()
355 355
 	{
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
 		$defaultTemplate = ($originalTemplate == $template);
129 129
 
130 130
 		$layoutPaths = $defaultTemplate ? $this->getLayoutPaths() : array_map(
131
-			function ($path) use ($originalTemplate, $template)
131
+			function($path) use ($originalTemplate, $template)
132 132
 			{
133 133
 				return str_replace(
134 134
 					$this->getThemesPath() . '/' . $originalTemplate,
Please login to merge, or discard this patch.