Test Setup Failed
Push — development ( baae14...606d2d )
by Glenn
09:50 queued 04:11
created
app/Http/Controllers/StaffController.php 3 patches
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * Store a newly created employee in storage.
48 48
      *
49 49
      * @param Request $request
50
-     * @return mixed
50
+     * @return \Illuminate\Http\RedirectResponse
51 51
      */
52 52
     public function store(Request $request)
53 53
     {
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      *
79 79
      * @param  Int, $id
80 80
      * @param  Request $request
81
-     * @return mixed
81
+     * @return \Illuminate\Http\RedirectResponse
82 82
      */
83 83
     public function updateUser($id, Request $request)
84 84
     {
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
      * Remove the user role.
151 151
      *
152 152
      * @param  int, $id
153
-     * @return redirect
153
+     * @return \Illuminate\Http\RedirectResponse
154 154
      */
155 155
     public function destroyRole($id)
156 156
     {
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
      * Save the new permission.
184 184
      *
185 185
      * @param  Request $request
186
-     * @return redirect
186
+     * @return \Illuminate\Http\RedirectResponse
187 187
      */
188 188
     public function save_permission(Request $request)
189 189
     {
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
      * Update the specified resource in storage.
250 250
      *
251 251
      * @param  \Illuminate\Http\Request $request
252
-     * @return \Illuminate\Http\Response
252
+     * @return \Illuminate\Http\RedirectResponse
253 253
      */
254 254
     public function update(Request $request)
255 255
     {
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -261,10 +261,10 @@
 block discarded – undo
261 261
     public function update(Request $request)
262 262
     {
263 263
         /** TODO: Add validation - Tjoosten
264
-        *  <<<<<<< Updated upstream
265
-        *  =======
266
-        *  >>>>>>> Stashed changes 
267
-        */
264
+         *  <<<<<<< Updated upstream
265
+         *  =======
266
+         *  >>>>>>> Stashed changes 
267
+         */
268 268
         $user = User::findOrFail(auth()->user()->id);
269 269
         $user->fname = $request->get('email');
270 270
         $user->name = $request->get('name');
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
         $injectionData = ['user' => $user, 'password' => $mail_password];
72 72
         
73
-        Mail::send('emails.new_user', $injectionData, function ($m) use ($user, $mailbox) {
73
+        Mail::send('emails.new_user', $injectionData, function($m) use ($user, $mailbox) {
74 74
             $m->from($mailbox);
75 75
             $m->to($user->email)->subject('Your user credentials!');
76 76
         });
@@ -274,8 +274,8 @@  discard block
 block discarded – undo
274 274
 
275 275
         if (Input::file()) {
276 276
             $image = Input::file('avatar');
277
-            $filename = time() . '.' . $image->getClientOriginalExtension();
278
-            $path = public_path('profilepics/' . $filename);
277
+            $filename = time().'.'.$image->getClientOriginalExtension();
278
+            $path = public_path('profilepics/'.$filename);
279 279
 
280 280
             Image::make($image->getRealPath())->resize(200, 200)->save($path);
281 281
             $user->image = $filename;
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
      */
295 295
     public function destroy($id)
296 296
     {
297
-        if (! Auth::user()->is('Administrator')) {
297
+        if (!Auth::user()->is('Administrator')) {
298 298
             return Redirect::back();
299 299
         }
300 300
 
Please login to merge, or discard this patch.