Completed
Push — master ( 3519da...9c5372 )
by Brandon
20s
created
app/Http/Controllers/DashboardController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers;
4 4
 
5
-use Illuminate\Http\Request;
6
-
7 5
 class DashboardController extends Controller
8 6
 {
9 7
     /**
Please login to merge, or discard this patch.
app/Http/Controllers/HomeController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers;
4 4
 
5
-use Illuminate\Http\Request;
6
-
7 5
 class HomeController extends Controller
8 6
 {
9 7
     /**
Please login to merge, or discard this patch.
app/Notifications/InvoicePaid.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Bus\Queueable;
6 6
 use Illuminate\Notifications\Notification;
7
-use Illuminate\Contracts\Queue\ShouldQueue;
8 7
 use Illuminate\Notifications\Messages\NexmoMessage;
9 8
 
10 9
 class InvoicePaid extends Notification
Please login to merge, or discard this patch.
app/Http/Controllers/ImageController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers;
4 4
 
5
-use Illuminate\Http\Request;
6 5
 use Intervention\Image\Facades\Image as Image;
7 6
 
8 7
 class ImageController extends Controller
Please login to merge, or discard this patch.
app/Device.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Database\Eloquent\Model;
6 6
 use Illuminate\Database\Eloquent\SoftDeletes;
7
-use Illuminate\Support\Facades\DB;
8 7
 
9 8
 class Device extends Model
10 9
 {
Please login to merge, or discard this patch.
app/Http/Controllers/ApiController.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     /**
12 12
      * Creates a json response for all the devices.
13 13
      *
14
-     * @return Response
14
+     * @return \Illuminate\Http\JsonResponse
15 15
      */    
16 16
     public function index()
17 17
     {
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      * Creates a json response for a specifc device.
24 24
      *
25 25
      * @param  Device  $device
26
-     * @return Response
26
+     * @return \Illuminate\Http\JsonResponse
27 27
      */    
28 28
     public function show(Device $device)
29 29
     {
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      * Updates the status of a device.
35 35
      *
36 36
      * @param  Request  $request
37
-     * @return Response
37
+     * @return \Illuminate\Http\JsonResponse
38 38
      */
39 39
     public function update(Request $request)
40 40
     {
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      * Registers a new device.
106 106
      *
107 107
      * @param  Request  $request
108
-     * @return Response
108
+     * @return \Illuminate\Http\JsonResponse
109 109
      */
110 110
     public function register(Request $request)
111 111
     {
Please login to merge, or discard this patch.