Completed
Push — master ( 660e59...6a5a28 )
by Glenn
08:54 queued 06:41
created
app/Http/Controllers/HomeController.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers;
4 4
 
5
-use App\Http\Requests;
6
-use Illuminate\Http\Request;
7
-
8 5
 class HomeController extends Controller
9 6
 {
10 7
     /**
Please login to merge, or discard this patch.
Indentation   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -27,19 +27,19 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function index()
29 29
     {
30
-      $user = auth()->user();
30
+        $user = auth()->user();
31 31
 
32
-      if(Bouncer::is($user)->a('Administrator', 'Manager')) {
33
-          return redirect()->route('dashboard.administration');
34
-      }
32
+        if(Bouncer::is($user)->a('Administrator', 'Manager')) {
33
+            return redirect()->route('dashboard.administration');
34
+        }
35 35
 
36
-      elseif(Bouncer::is($user)->an('Agent')) {
36
+        elseif(Bouncer::is($user)->an('Agent')) {
37 37
         return redirect()->route('dashboard.agent');
38
-      }
38
+        }
39 39
 
40
-      elseif(Bouncer::is($user)->an('Customer')) {
41
-          return redirect('/');
42
-      }
40
+        elseif(Bouncer::is($user)->an('Customer')) {
41
+            return redirect('/');
42
+        }
43 43
         return redirect('/');
44 44
     }
45 45
 
@@ -51,28 +51,28 @@  discard block
 block discarded – undo
51 51
     public function administration()
52 52
     {
53 53
 
54
-      if (\Auth::check()) {
54
+        if (\Auth::check()) {
55 55
     // The user is logged in...
56 56
 
57
-  $CountOpenRequests = Callback::where('status', 'open')->count();
58
-  $data["chart"] = Charts::create('percentage', 'justgage')
59
-  ->Title('')
60
-  ->values([$CountOpenRequests, 0, 4])
61
-  ->ElementLabel('Open requests')
62
-  ->Responsive(false)
63
-  ->Height(250)
64
-  ->Width(0);
65
-
66
-  $CountOverdueRequests = Callback::where('status', 'overdue')->count();
67
-  $data["overdue"] = Charts::create('percentage', 'justgage')
68
-  ->Title('')
69
-  ->ElementLabel('Overdue requests')
70
-  ->values([$CountOverdueRequests, 0 ,1])
71
-  ->Responsive(false)
72
-  ->Height(250)
73
-  ->Width(0);
74
-
75
-  $data["assigned"] = Charts::create('percentage', 'justgage')
57
+    $CountOpenRequests = Callback::where('status', 'open')->count();
58
+    $data["chart"] = Charts::create('percentage', 'justgage')
59
+    ->Title('')
60
+    ->values([$CountOpenRequests, 0, 4])
61
+    ->ElementLabel('Open requests')
62
+    ->Responsive(false)
63
+    ->Height(250)
64
+    ->Width(0);
65
+
66
+    $CountOverdueRequests = Callback::where('status', 'overdue')->count();
67
+    $data["overdue"] = Charts::create('percentage', 'justgage')
68
+    ->Title('')
69
+    ->ElementLabel('Overdue requests')
70
+    ->values([$CountOverdueRequests, 0 ,1])
71
+    ->Responsive(false)
72
+    ->Height(250)
73
+    ->Width(0);
74
+
75
+    $data["assigned"] = Charts::create('percentage', 'justgage')
76 76
 ->Title('')
77 77
 ->ElementLabel('Tasks assigned')
78 78
 ->Values([10, 0, 2])
@@ -92,9 +92,9 @@  discard block
 block discarded – undo
92 92
      */
93 93
     public function agent()
94 94
     {
95
-      $user = auth()->user();
95
+        $user = auth()->user();
96 96
 
97
-      if (\Auth::check()) {
97
+        if (\Auth::check()) {
98 98
 
99 99
         $CountOpenRequests = Callback::where('status', 'open')->count();
100 100
         $data["chart"] = Charts::create('percentage', 'justgage')
@@ -115,14 +115,14 @@  discard block
 block discarded – undo
115 115
         ->Width(0);
116 116
 
117 117
         $data["assigned"] = Charts::create('percentage', 'justgage')
118
-      ->Title('')
119
-      ->ElementLabel('Tasks assigned')
120
-      ->values([80,0,100])
121
-      ->Responsive(false)
122
-      ->Height(200)
123
-      ->Width(0);
124
-
125
-      $data["callbacks"] = Callback::where('agent_id', $user->id)->with('users', 'customers', 'departments')->get();
118
+        ->Title('')
119
+        ->ElementLabel('Tasks assigned')
120
+        ->values([80,0,100])
121
+        ->Responsive(false)
122
+        ->Height(200)
123
+        ->Width(0);
124
+
125
+        $data["callbacks"] = Callback::where('agent_id', $user->id)->with('users', 'customers', 'departments')->get();
126 126
 
127 127
         return view('home/agent', $data);
128 128
 
Please login to merge, or discard this patch.
app/Http/Controllers/CustomersController.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use App\Customer;
6
-use Illuminate\Http\Request;
7
-
8 6
 use App\Http\Requests;
9 7
 
10 8
 class CustomersController extends Controller
Please login to merge, or discard this patch.
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -27,12 +27,12 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function index()
29 29
     {
30
-      $user = auth()->user();
30
+        $user = auth()->user();
31 31
 
32
-      if ($user->is('Agent') || $user->is('Manager') || $user->is('Administrator')) {
32
+        if ($user->is('Agent') || $user->is('Manager') || $user->is('Administrator')) {
33 33
         $data['customers'] = Customer::orderBy('status' , 'asc')->paginate(15);
34 34
         return view('customers/index', $data);
35
-      }
35
+        }
36 36
         return redirect()->back();
37 37
     }
38 38
 
@@ -65,9 +65,9 @@  discard block
 block discarded – undo
65 65
 
66 66
         if (! $user->is('Guest') || ! $user->is('Agent') || ! $user->is('Manager') || ! $user->is('Administrator'))
67 67
         {
68
-          Customer::create($input->except('_token'));
69
-          session()->flash('message', 'Customer created');
70
-          return redirect()->to('/customers');
68
+            Customer::create($input->except('_token'));
69
+            session()->flash('message', 'Customer created');
70
+            return redirect()->to('/customers');
71 71
         }
72 72
 
73 73
         return redirect()->back();
@@ -84,10 +84,10 @@  discard block
 block discarded – undo
84 84
         $user = auth()->user();
85 85
 
86 86
         if(! $user->is('Customer') || ! $user->is('Agent') || ! $user->is('Manager') || ! $user->is('Administrator')) {
87
-          $data['customer'] = Customer::where('id', $id)->get();
88
-          return view('customers/edit', $data);
87
+            $data['customer'] = Customer::where('id', $id)->get();
88
+            return view('customers/edit', $data);
89 89
 
90
-      }
90
+        }
91 91
 
92 92
         return redirect()->back();
93 93
     }
Please login to merge, or discard this patch.
app/Http/Controllers/ApiKeyController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers;
4 4
 
5
-use App\User;
6 5
 use Illuminate\Http\Request;
7 6
 use Chrisbjr\ApiGuard\Models\ApiKey;
8
-use App\Http\Requests;
9 7
 
10 8
 class ApiKeyController extends Controller
11 9
 {
Please login to merge, or discard this patch.
app/Http/Controllers/DepartmentController.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 App\Departments;
6 6
 use Illuminate\Http\Request;
7
-
8 7
 use App\Http\Requests;
9 8
 
10 9
 /**
Please login to merge, or discard this patch.
app/Http/Controllers/StaffController.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -5,10 +5,7 @@
 block discarded – undo
5 5
 use App\Departments;
6 6
 use App\User;
7 7
 use App\Roles;
8
-
9 8
 use Chrisbjr\ApiGuard\Models\ApiKey;
10
-use Illuminate\Http\Request;
11
-
12 9
 use App\Http\Requests;
13 10
 use Bouncer;
14 11
 
Please login to merge, or discard this patch.
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -64,36 +64,36 @@  discard block
 block discarded – undo
64 64
 
65 65
         if ($user->is('Manager') || $user->is('Administrator'))
66 66
         {
67
-          $password = $faker->password;
68
-          // Save the user to the database.
69
-          $NewUser = User::create(
67
+            $password = $faker->password;
68
+            // Save the user to the database.
69
+            $NewUser = User::create(
70 70
             [
71
-              'fname'     => $input->fname,
72
-              'name'      => $input->name,
73
-              'email'     => $input->email,
74
-              'password'  => \Hash::make($password),
75
-              'biography' => nl2br($input->biography),
71
+                'fname'     => $input->fname,
72
+                'name'      => $input->name,
73
+                'email'     => $input->email,
74
+                'password'  => \Hash::make($password),
75
+                'biography' => nl2br($input->biography),
76 76
             ]
77
-          )->id;
78
-          // Assign the user to the selected department
77
+            )->id;
78
+            // Assign the user to the selected department
79 79
             User::find($NewUser)->departments()->attach($input->department);
80
-          // Assign the user to the selected role.
80
+            // Assign the user to the selected role.
81 81
             Bouncer::assign($input->role)->to($user);
82
-         // Send a confirmation mail to the user.
82
+            // Send a confirmation mail to the user.
83 83
             Mail::send('emails.welcome', ['user' => $NewUser, 'password' => $password], function ($message) use ($user)
84 84
             {
85
-              $message->from(env('MAIL_USERNAME'));
86
-              $message->to('[email protected]', 'John Smith')->subject('Welcome to Ring Me!');
85
+                $message->from(env('MAIL_USERNAME'));
86
+                $message->to('[email protected]', 'John Smith')->subject('Welcome to Ring Me!');
87 87
             }
88
-          );
89
-          session()->flash('message', 'The new user has been created and is assigned to his department and role.');
90
-          return redirect("staff");
91
-         }
92
-         else
93
-         {
94
-          return redirect()->back(302);
95
-         }
96
-       }
88
+            );
89
+            session()->flash('message', 'The new user has been created and is assigned to his department and role.');
90
+            return redirect("staff");
91
+            }
92
+            else
93
+            {
94
+            return redirect()->back(302);
95
+            }
96
+        }
97 97
 
98 98
     /**
99 99
      * Update the staff member.
@@ -128,10 +128,10 @@  discard block
 block discarded – undo
128 128
      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
129 129
      */
130 130
     public function index()
131
-	{
131
+    {
132 132
         $data["departments"] = Departments::all();
133
-		$data['users'] = User::paginate(15);
134
-    	return view('users/index', $data);
133
+        $data['users'] = User::paginate(15);
134
+        return view('users/index', $data);
135 135
     }
136 136
 
137 137
     /**
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
     {
172 172
         $id = auth()->user()->id;
173 173
         $data['tokens'] = ApiKey::where('user_id', $id)->get();
174
-    	return view('users/profile', $data);
174
+        return view('users/profile', $data);
175 175
     }
176 176
 
177 177
     /**
@@ -193,11 +193,11 @@  discard block
 block discarded – undo
193 193
         session()->flash('message', 'The user has been removed.');
194 194
 
195 195
         return redirect()->to('/staff');
196
-      }
197
-      else
198
-      {
196
+        }
197
+        else
198
+        {
199 199
         return redirect()->back();
200
-      }
200
+        }
201 201
     }
202 202
 
203 203
     public function get_roles()
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
         $data2 = [];
207 207
         foreach($items as $role)
208 208
         {
209
-         $data2[] = [
209
+            $data2[] = [
210 210
         'value' => $role["id"],
211 211
         'text'  => $role["name"]
212 212
         ];
Please login to merge, or discard this patch.
app/Http/Controllers/RolesController.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@
 block discarded – undo
16 16
      */
17 17
     public function index()
18 18
     {
19
-    	$data['roles'] = Roles::all();
20
-    	return view('roles.index', $data);
19
+        $data['roles'] = Roles::all();
20
+        return view('roles.index', $data);
21 21
     }
22 22
 
23 23
     /**
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use Illuminate\Http\Request;
6
-use App\Http\Requests;
7 6
 use Silber\Bouncer\Database\Constraints\Roles;
8 7
 
9 8
 class RolesController extends Controller
Please login to merge, or discard this patch.
app/Http/Controllers/BackupController.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use App\Customer;
6
-use Illuminate\Http\Request;
7
-
8 6
 use App\Http\Requests;
9 7
 
10 8
 class CustomersController extends Controller
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 class BackupController extends Controller
11 11
 {
12
-	    public function __construct()
12
+        public function __construct()
13 13
     {
14 14
         $this->middleware('auth');
15 15
         $this->middleware('lang');
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         $data['MonthlyBackups']    = Config::get('laravel-backup.cleanup.defaultStrategy.keepMonthlyBackupsForMonths');
31 31
         $data['KeepYearlyBackups'] = Config::get('laravel-backup.cleanup.defaultStrategy.keepYearlyBackupsForYears');
32 32
 
33
-    	return view('settings.backups', $data);
33
+        return view('settings.backups', $data);
34 34
     }
35 35
 
36 36
     /**
Please login to merge, or discard this patch.
app/Http/Controllers/ProfileController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -3,11 +3,8 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use App\User;
6
-use Illuminate\Http\Request;
7
-
8 6
 use App\Http\Requests;
9 7
 use Illuminate\Support\Facades\Input;
10
-use Illuminate\Support\Facades\Storage;
11 8
 use Intervention\Image\Facades\Image;
12 9
 
13 10
 class ProfileController extends Controller
Please login to merge, or discard this patch.
app/Http/Controllers/SettingsController.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 {
11 11
     // TODO: Needs phpunit tests. -> create github issue
12 12
 
13
-	/**
13
+    /**
14 14
      * SettingsController constructor.
15 15
      */
16 16
     public function __construct()
@@ -26,17 +26,17 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function index()
28 28
     {
29
-    	return view('settings.index');
29
+        return view('settings.index');
30 30
     }
31 31
 
32
-		/**
33
-		 * Get the email settings page.
34
-		 *
35
-		 * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
36
-		 */
37
-		public function email()
38
-		{
39
-			return view('settings.email');
40
-		}
32
+        /**
33
+         * Get the email settings page.
34
+         *
35
+         * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
36
+         */
37
+        public function email()
38
+        {
39
+            return view('settings.email');
40
+        }
41 41
 
42 42
 }
Please login to merge, or discard this patch.