Completed
Pull Request — develop (#28)
by Neil
07:35
created
app/Api/Controllers/APIController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@  discard block
 block discarded – undo
11 11
 class ApiController extends Controller
12 12
 {
13 13
     /**
14
-    * Get info about the install
15
-    */
14
+     * Get info about the install
15
+     */
16 16
     public function get_info()
17 17
     {
18 18
         $versions['git'] = `git rev-parse --short HEAD`;
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * Get statistics about the install
31
-    **/
31
+     **/
32 32
     public function get_stats()
33 33
     {
34 34
         $stats['devices']    = DB::select('SELECT COUNT(device_id) AS `total` FROM `devices`')[0]->total;
Please login to merge, or discard this patch.
app/Http/Controllers/HomeController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,6 +21,6 @@
 block discarded – undo
21 21
     public function about() {
22 22
         $versions = $this->api->be(auth()->user())->get('/api/info');
23 23
         $stats    = $this->api->be(auth()->user())->get('/api/stats');
24
-        return view('general.about', ['versions'=>$versions,'stats'=>$stats]);
24
+        return view('general.about', ['versions'=>$versions, 'stats'=>$stats]);
25 25
     }
26 26
 }
Please login to merge, or discard this patch.