@@ -23,7 +23,7 @@ |
||
23 | 23 | * @param integer $id |
24 | 24 | * @return array |
25 | 25 | */ |
26 | -return function ($id = null) { |
|
26 | +return function($id = null) { |
|
27 | 27 | /** |
28 | 28 | * @var Controller $this |
29 | 29 | */ |
@@ -22,7 +22,7 @@ |
||
22 | 22 | * @param integer $rootId |
23 | 23 | * @return mixed |
24 | 24 | */ |
25 | -return function ($parentId = null, $rootId = null) { |
|
25 | +return function($parentId = null, $rootId = null) { |
|
26 | 26 | /** |
27 | 27 | * @var Controller $this |
28 | 28 | */ |
@@ -46,7 +46,7 @@ |
||
46 | 46 | ->length(2, 64) |
47 | 47 | ->slug() |
48 | 48 | ->callback( |
49 | - function ($input) { |
|
49 | + function($input) { |
|
50 | 50 | $select = $this->getTable()->select() |
51 | 51 | ->where('alias = ?', $input); |
52 | 52 |