Completed
Pull Request — master (#5)
by Jacob
03:21
created
router/PortfolioRouter.class.inc.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
             ],
27 27
         ];
28 28
 
29
-        return array_map(function ($row) {
29
+        return array_map(function($row) {
30 30
             return (object) $row;
31 31
         }, $paths);
32 32
     }
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
             ],
49 49
         ];
50 50
 
51
-        return array_map(function ($row) {
51
+        return array_map(function($row) {
52 52
             return (object) $row;
53 53
         }, $paths);
54 54
     }
Please login to merge, or discard this patch.
controller/portfolio/DefaultPageController.class.inc.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
             $active_page = ucfirst(URLDecode::getPiece(1));
37 37
         }
38 38
 
39
-        return array_map(function ($row) use ($active_page) {
39
+        return array_map(function($row) use ($active_page) {
40 40
             $row = (object) $row;
41 41
             $row->active = ($row->name == $active_page);
42 42
             return $row;
Please login to merge, or discard this patch.