Passed
Push — master ( 45960c...20d4cd )
by Glegrith
01:58
created
app/custom/Http/Controller/SpaceFlightDatabase.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -114,15 +114,15 @@
 block discarded – undo
114 114
             }
115 115
 
116 116
             view("SpaceFlightDatabase/noMissionSpecified", [
117
-               "breadcrumb" => view("fetch:core/breadcrumb_single", [
118
-                       "isNotEndLevel" => true,
119
-                       "linkToLowerLevel" => "/sfdb",
120
-                       "text" => "Space Flight DB",
121
-                   ]).view("fetch:core/breadcrumb_single", [
122
-                       "text" => "Mission",
123
-                   ]),
124
-               "dataForStats" => json_encode($dataForJSONArray),
125
-               "SpaceFlightMissionTableData" => $missionTableData,
117
+                "breadcrumb" => view("fetch:core/breadcrumb_single", [
118
+                        "isNotEndLevel" => true,
119
+                        "linkToLowerLevel" => "/sfdb",
120
+                        "text" => "Space Flight DB",
121
+                    ]).view("fetch:core/breadcrumb_single", [
122
+                        "text" => "Mission",
123
+                    ]),
124
+                "dataForStats" => json_encode($dataForJSONArray),
125
+                "SpaceFlightMissionTableData" => $missionTableData,
126 126
             ]);
127 127
         } else {
128 128
             $missionData                        = Missions::getInstance()->getByID($ID);
Please login to merge, or discard this patch.
app/custom/Http/Controller/ProjectManagerController.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 
7 7
 class ProjectManagerController
8 8
 {
9
-   public function dashboard()
10
-   {
11
-       $projects = DB::select(
12
-           "SELECT id, name, description FROM projects WHERE owner=:user_id",
13
-           ['user_id' => $_SESSION['user']['id']]
14
-       );
9
+    public function dashboard()
10
+    {
11
+        $projects = DB::select(
12
+            "SELECT id, name, description FROM projects WHERE owner=:user_id",
13
+            ['user_id' => $_SESSION['user']['id']]
14
+        );
15 15
 
16
-       view("projectManager/dashboard", ['projects' => $projects]);
17
-   }
16
+        view("projectManager/dashboard", ['projects' => $projects]);
17
+    }
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.