Completed
Pull Request — master (#107)
by Glenn
14:03 queued 07:08
created
app/Console/Kernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      *
13 13
      * @var array
14 14
      */
15
-    protected $commands = [ ];
15
+    protected $commands = [];
16 16
 
17 17
     /**
18 18
      * Define the application's command schedule.
Please login to merge, or discard this patch.
app/Http/Controllers/TeamsController.php 3 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -3,12 +3,9 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use Illuminate\Http\Request;
6
-use App\Http\Requests;
7
-
8 6
 use App\Departments;
9 7
 use App\Teams;
10 8
 use App\User;
11
-
12 9
 use App\Http\Controllers\Controller;
13 10
 
14 11
 class TeamsController extends Controller
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     /**
43 43
      * Store a newly created team in database.
44 44
      *
45
-     * @param array $request The user input form the form.
45
+     * @param Request $request The user input form the form.
46 46
      */
47 47
     public function store(Request $request)
48 48
     {
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     /**
76 76
      * Update the specified team in the database.
77 77
      
78
-     * @param array $request The user input from the form.
78
+     * @param Request $request The user input from the form.
79 79
      * @param int   $id      The id in the database for the team
80 80
      */
81 81
     public function update(Request $request, $id)
Please login to merge, or discard this patch.
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,6 @@
 block discarded – undo
74 74
 
75 75
     /**
76 76
      * Update the specified team in the database.
77
-     
78 77
      * @param array $request The user input from the form.
79 78
      * @param int   $id      The id in the database for the team
80 79
      */
Please login to merge, or discard this patch.
app/Widgets/RecentOvertime.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function __construct()
10 10
     {
11
-       $this->reloadTimeout = config('timecontrol.refreshInterval');
11
+        $this->reloadTimeout = config('timecontrol.refreshInterval');
12 12
     }
13 13
 
14 14
     /**
Please login to merge, or discard this patch.
app/Widgets/RecentTasks.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function __construct()
10 10
     {
11
-       $this->reloadTimeout = config('timecontrol.refreshInterval');
11
+        $this->reloadTimeout = config('timecontrol.refreshInterval');
12 12
     }
13 13
 
14 14
     /**
Please login to merge, or discard this patch.