Completed
Pull Request — master (#81)
by Phecho
03:28
created
app/Http/Controllers/Admin/DashboardController.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -11,13 +11,8 @@
 block discarded – undo
11 11
 
12 12
 namespace Gitamin\Http\Controllers\Admin;
13 13
 
14
-use Exception;
15 14
 use Gitamin\Models\Project;
16
-use Gitamin\Models\Setting;
17
-use GrahamCampbell\Binput\Facades\Binput;
18 15
 use Illuminate\Routing\Controller;
19
-use Illuminate\Support\Facades\Lang;
20
-use Illuminate\Support\Facades\Redirect;
21 16
 use Illuminate\Support\Facades\Session;
22 17
 use Illuminate\Support\Facades\View;
23 18
 
Please login to merge, or discard this patch.
app/Http/Routes/AdminRoutes.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function map(Registrar $router)
27 27
     {
28
-         //Dashboard area
28
+            //Dashboard area
29 29
         $router->group([
30 30
             'middleware' => ['auth', 'admin'],
31 31
             'prefix'     => 'admin',
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
                 'uses' => 'DashboardController@indexAction',
38 38
             ]);
39 39
 
40
-             // Settings
40
+                // Settings
41 41
             $router->group([
42 42
                 'as'     => 'settings.',
43 43
                 'prefix' => 'settings',
Please login to merge, or discard this patch.