Completed
Push — master ( 35dd53...18ebf0 )
by claudio
09:19 queued 12s
created
app/Http/Controllers/Companies/Auth/AuthController.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      * cn = company normal
41 41
      * @var array
42 42
      */
43
-    protected $custom = ['mode' => 'cn'];
43
+    protected $custom = [ 'mode' => 'cn' ];
44 44
 
45 45
     /**
46 46
      * Create a new authentication controller instance.
@@ -48,19 +48,19 @@  discard block
 block discarded – undo
48 48
      */
49 49
     public function __construct()
50 50
     {
51
-        config(['auth.model' => \plunner\Company::class]);
52
-        config(['jwt.user' => \plunner\Company::class]);
51
+        config([ 'auth.model' => \plunner\Company::class ]);
52
+        config([ 'jwt.user' => \plunner\Company::class ]);
53 53
     }
54 54
 
55 55
     public function postLogin(Request $request)
56 56
     {
57 57
         //remember me
58
-        $this->validate($request, ['remember' => 'required|boolean']);
58
+        $this->validate($request, [ 'remember' => 'required|boolean' ]);
59 59
         if ($request->input('remember', false)) {
60
-            config(['jwt.ttl' => '43200']); //30 days
61
-            $this->custom = array_merge($this->custom, ['remember' => 'true']);
60
+            config([ 'jwt.ttl' => '43200' ]); //30 days
61
+            $this->custom = array_merge($this->custom, [ 'remember' => 'true' ]);
62 62
         } else
63
-            $this->custom = array_merge($this->custom, ['remember' => 'false']);
63
+            $this->custom = array_merge($this->custom, [ 'remember' => 'false' ]);
64 64
         return $this->postLoginOriginal($request);
65 65
     }
66 66
 
@@ -88,9 +88,9 @@  discard block
 block discarded – undo
88 88
     protected function create(array $data)
89 89
     {
90 90
         return Company::create([
91
-            'name' => $data['name'],
92
-            'email' => $data['email'],
93
-            'password' => bcrypt($data['password']),
91
+            'name' => $data[ 'name' ],
92
+            'email' => $data[ 'email' ],
93
+            'password' => bcrypt($data[ 'password' ]),
94 94
         ]);
95 95
     }
96 96
 
Please login to merge, or discard this patch.
app/Http/Controllers/Employees/Auth/AuthController.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      * en = employee normal
44 44
      * @var array
45 45
      */
46
-    protected $custom = ['mode' => 'en'];
46
+    protected $custom = [ 'mode' => 'en' ];
47 47
 
48 48
     /**
49 49
      * @var company
@@ -56,13 +56,13 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function __construct()
58 58
     {
59
-        config(['auth.model' => \plunner\Employee::class]);
60
-        config(['jwt.user' => \plunner\Employee::class]);
59
+        config([ 'auth.model' => \plunner\Employee::class ]);
60
+        config([ 'jwt.user' => \plunner\Employee::class ]);
61 61
     }
62 62
 
63 63
     public function postRegister(Request $request)
64 64
     {
65
-        $this->validate($request, ['company' => 'required|exists:companies,name']);
65
+        $this->validate($request, [ 'company' => 'required|exists:companies,name' ]);
66 66
         $this->company = Company::whereName($request->input('company'))->firstOrFail();
67 67
         return $this->postRegisterOriginal($request);
68 68
     }
@@ -70,17 +70,17 @@  discard block
 block discarded – undo
70 70
     public function postLogin(Request $request)
71 71
     {
72 72
         //get company ID and impiled it in the request
73
-        $this->validate($request, ['company' => 'required|exists:companies,name']);
73
+        $this->validate($request, [ 'company' => 'required|exists:companies,name' ]);
74 74
         $this->company = Company::whereName($request->input('company'))->firstOrFail();
75
-        $request->merge(['company_id' => $this->company->id]);
75
+        $request->merge([ 'company_id' => $this->company->id ]);
76 76
 
77 77
         //remember me
78
-        $this->validate($request, ['remember' => 'required|boolean']);
78
+        $this->validate($request, [ 'remember' => 'required|boolean' ]);
79 79
         if ($request->input('remember', false)) {
80
-            config(['jwt.ttl' => '43200']); //30 days
81
-            $this->custom = array_merge($this->custom, ['remember' => 'true']);
80
+            config([ 'jwt.ttl' => '43200' ]); //30 days
81
+            $this->custom = array_merge($this->custom, [ 'remember' => 'true' ]);
82 82
         } else
83
-            $this->custom = array_merge($this->custom, ['remember' => 'false']);
83
+            $this->custom = array_merge($this->custom, [ 'remember' => 'false' ]);
84 84
 
85 85
         return $this->postLoginOriginal($request);
86 86
     }
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     {
96 96
         return Validator::make($data, [
97 97
             'name' => 'required|min:1|max:255',
98
-            'email' => 'required|email|max:255|unique:employees,email,NULL,id,company_id,' . $this->company->id,
98
+            'email' => 'required|email|max:255|unique:employees,email,NULL,id,company_id,'.$this->company->id,
99 99
             'password' => 'required|confirmed|min:6',
100 100
         ]);
101 101
     }
@@ -109,9 +109,9 @@  discard block
 block discarded – undo
109 109
     protected function create(array $data)
110 110
     {
111 111
         return $this->company->save(new employee([
112
-            'name' => $data['name'],
113
-            'email' => $data['email'],
114
-            'password' => bcrypt($data['password']),
112
+            'name' => $data[ 'name' ],
113
+            'email' => $data[ 'email' ],
114
+            'password' => bcrypt($data[ 'password' ]),
115 115
         ]));
116 116
     }
117 117
 }
Please login to merge, or discard this patch.
app/Http/routes.php 1 patch
Spacing   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -19,41 +19,41 @@  discard block
 block discarded – undo
19 19
  * Companies
20 20
  */
21 21
 
22
-Route::group(['namespace' => 'Companies', 'prefix' => 'companies'], function () {
22
+Route::group([ 'namespace' => 'Companies', 'prefix' => 'companies' ], function() {
23 23
 
24 24
     //\Auth
25 25
 
26
-    Route::group(['namespace' => 'Auth'], function () {
27
-        Route::group(['prefix' => 'auth'], function () {
26
+    Route::group([ 'namespace' => 'Auth' ], function() {
27
+        Route::group([ 'prefix' => 'auth' ], function() {
28 28
             // Authentication routes...
29
-            Route::post('login', ['as' => 'companies.auth.login', 'uses' => 'AuthController@postLogin']);
29
+            Route::post('login', [ 'as' => 'companies.auth.login', 'uses' => 'AuthController@postLogin' ]);
30 30
 
31 31
             // Registration routes...
32
-            Route::post('register', ['as' => 'companies.auth.register', 'uses' => 'AuthController@postRegister']);
32
+            Route::post('register', [ 'as' => 'companies.auth.register', 'uses' => 'AuthController@postRegister' ]);
33 33
 
34 34
         });
35 35
 
36
-        Route::group(['prefix' => 'password'], function () {
36
+        Route::group([ 'prefix' => 'password' ], function() {
37 37
             // Password reset link request routes...
38
-            Route::post('email', ['as' => 'companies.auth.email', 'uses' => 'PasswordController@postEmail']);
38
+            Route::post('email', [ 'as' => 'companies.auth.email', 'uses' => 'PasswordController@postEmail' ]);
39 39
 
40 40
             // Password reset routes...
41
-            Route::post('reset', ['as' => 'companies.auth.reset', 'uses' => 'PasswordController@postReset']);
41
+            Route::post('reset', [ 'as' => 'companies.auth.reset', 'uses' => 'PasswordController@postReset' ]);
42 42
         });
43 43
     });
44 44
 
45
-    Route::group(['namespace' => 'Employees'], function () {
46
-        Route::resource('employees', 'EmployeesController', ['except' => ['create', 'edit']]);
45
+    Route::group([ 'namespace' => 'Employees' ], function() {
46
+        Route::resource('employees', 'EmployeesController', [ 'except' => [ 'create', 'edit' ] ]);
47 47
     });
48 48
 
49
-    Route::group(['namespace' => 'Groups'], function () {
50
-        Route::resource('groups', 'GroupsController', ['except' => ['create', 'edit']]);
51
-        Route::resource('groups.employees', 'EmployeesController', ['only' => ['store', 'index', 'destroy']]);
49
+    Route::group([ 'namespace' => 'Groups' ], function() {
50
+        Route::resource('groups', 'GroupsController', [ 'except' => [ 'create', 'edit' ] ]);
51
+        Route::resource('groups.employees', 'EmployeesController', [ 'only' => [ 'store', 'index', 'destroy' ] ]);
52 52
     });
53 53
 
54
-    Route::group(['namespace' => 'Company', 'prefix' => 'company'], function () {
55
-        Route::get('/', ['as' => 'companies.company.index', 'uses' => 'CompanyController@index']);
56
-        Route::put('/', ['as' => 'companies.company.update', 'uses' => 'CompanyController@update']);
54
+    Route::group([ 'namespace' => 'Company', 'prefix' => 'company' ], function() {
55
+        Route::get('/', [ 'as' => 'companies.company.index', 'uses' => 'CompanyController@index' ]);
56
+        Route::put('/', [ 'as' => 'companies.company.update', 'uses' => 'CompanyController@update' ]);
57 57
     });
58 58
 });
59 59
 
@@ -61,52 +61,52 @@  discard block
 block discarded – undo
61 61
 /**
62 62
  * Employees
63 63
  */
64
-Route::group(['namespace' => 'Employees', 'prefix' => 'employees'], function () {
64
+Route::group([ 'namespace' => 'Employees', 'prefix' => 'employees' ], function() {
65 65
 
66 66
     //\Auth
67
-    Route::group(['namespace' => 'Auth'], function () {
68
-        Route::group(['prefix' => 'auth'], function () {
67
+    Route::group([ 'namespace' => 'Auth' ], function() {
68
+        Route::group([ 'prefix' => 'auth' ], function() {
69 69
             // Authentication routes...
70
-            Route::post('login', ['as' => 'companies.auth.login', 'uses' => 'AuthController@postLogin']);
70
+            Route::post('login', [ 'as' => 'companies.auth.login', 'uses' => 'AuthController@postLogin' ]);
71 71
 
72 72
             // Registration routes...
73 73
             //Route::post('register', ['as' => 'companies.auth.register', 'uses'=>'AuthController@postRegister']); //the registration is managed by the company
74 74
 
75 75
         });
76 76
 
77
-        Route::group(['prefix' => 'password'], function () {
77
+        Route::group([ 'prefix' => 'password' ], function() {
78 78
             // Password reset link request routes...
79
-            Route::post('email', ['as' => 'companies.auth.email', 'uses' => 'PasswordController@postEmail']);
79
+            Route::post('email', [ 'as' => 'companies.auth.email', 'uses' => 'PasswordController@postEmail' ]);
80 80
 
81 81
             // Password reset routes...
82
-            Route::post('reset', ['as' => 'companies.auth.reset', 'uses' => 'PasswordController@postReset']);
82
+            Route::post('reset', [ 'as' => 'companies.auth.reset', 'uses' => 'PasswordController@postReset' ]);
83 83
         });
84 84
     });
85 85
 
86
-    Route::group(['namespace' => 'Calendars'], function () {
87
-        Route::resource('calendars', 'CalendarsController', ['except' => ['create', 'edit']]);
88
-        Route::post('calendars/caldav', ['as' => 'employees.calendars.caldav', 'uses' => 'CalendarsController@storeCaldav']);
89
-        Route::post('calendars/calendars', ['as' => 'employees.calendars.calendars', 'uses' => 'CalendarsController@getCalendars']);
90
-        Route::resource('calendars.timeslots', 'TimeslotsController', ['except' => ['create', 'edit']]);
86
+    Route::group([ 'namespace' => 'Calendars' ], function() {
87
+        Route::resource('calendars', 'CalendarsController', [ 'except' => [ 'create', 'edit' ] ]);
88
+        Route::post('calendars/caldav', [ 'as' => 'employees.calendars.caldav', 'uses' => 'CalendarsController@storeCaldav' ]);
89
+        Route::post('calendars/calendars', [ 'as' => 'employees.calendars.calendars', 'uses' => 'CalendarsController@getCalendars' ]);
90
+        Route::resource('calendars.timeslots', 'TimeslotsController', [ 'except' => [ 'create', 'edit' ] ]);
91 91
     });
92 92
 
93
-    Route::group(['namespace' => 'Planners', 'prefix' => 'planners'], function () {
94
-        Route::resource('groups', 'GroupsController', ['only' => ['index', 'show']]);
95
-        Route::resource('groups.meetings', 'MeetingsController', ['except' => ['create', 'edit']]);
96
-        Route::resource('groups.meetings.timeslots', 'MeetingTimeslotsController', ['except' => ['create', 'edit']]);
93
+    Route::group([ 'namespace' => 'Planners', 'prefix' => 'planners' ], function() {
94
+        Route::resource('groups', 'GroupsController', [ 'only' => [ 'index', 'show' ] ]);
95
+        Route::resource('groups.meetings', 'MeetingsController', [ 'except' => [ 'create', 'edit' ] ]);
96
+        Route::resource('groups.meetings.timeslots', 'MeetingTimeslotsController', [ 'except' => [ 'create', 'edit' ] ]);
97 97
     });
98 98
 
99
-    Route::group(['namespace' => 'Groups'], function () {
100
-        Route::resource('groups', 'GroupsController', ['only' => ['index', 'show']]);
99
+    Route::group([ 'namespace' => 'Groups' ], function() {
100
+        Route::resource('groups', 'GroupsController', [ 'only' => [ 'index', 'show' ] ]);
101 101
     });
102 102
 
103 103
 
104
-    Route::group(['namespace' => 'Meetings'], function () {
105
-        Route::resource('meetings', 'MeetingsController', ['only' => ['index', 'show']]);
104
+    Route::group([ 'namespace' => 'Meetings' ], function() {
105
+        Route::resource('meetings', 'MeetingsController', [ 'only' => [ 'index', 'show' ] ]);
106 106
     });
107 107
 
108
-    Route::group(['namespace' => 'Employee', 'prefix' => 'employee'], function () {
109
-        Route::get('/', ['as' => 'employees.employee.index', 'uses' => 'EmployeeController@index']);
110
-        Route::put('/', ['as' => 'employees.employee.update', 'uses' => 'EmployeeController@update']);
108
+    Route::group([ 'namespace' => 'Employee', 'prefix' => 'employee' ], function() {
109
+        Route::get('/', [ 'as' => 'employees.employee.index', 'uses' => 'EmployeeController@index' ]);
110
+        Route::put('/', [ 'as' => 'employees.employee.update', 'uses' => 'EmployeeController@update' ]);
111 111
     });
112 112
 });
113 113
\ No newline at end of file
Please login to merge, or discard this patch.
app/Console/Commands/Optimise/Optimise.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -85,8 +85,8 @@  discard block
 block discarded – undo
85 85
     {
86 86
         $this->startTime = clone $startTime;
87 87
         $this->endTime = clone $this->startTime;
88
-        $this->endTime->add(new \DateInterval('PT' . (($this->max_time_slots + $this->time_slots) *
89
-                config('app.timeslots.duration')) . 'S'));
88
+        $this->endTime->add(new \DateInterval('PT'.(($this->max_time_slots + $this->time_slots) *
89
+                config('app.timeslots.duration')).'S'));
90 90
     }
91 91
 
92 92
     /**
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
          * @var $meetings \Illuminate\Support\Collection
214 214
          */
215 215
         $meetings = collect($this->company->getMeetingsTimeSlots($this->startTime, $this->endTime));
216
-        $timeslots = $meetings->groupBy('id')->map(function ($item) { //convert timeslots
216
+        $timeslots = $meetings->groupBy('id')->map(function($item) { //convert timeslots
217 217
             return $this->durationConverter($this->timeSlotsConverter($item));
218 218
         });
219 219
         return $solver->setMeetings($timeslots->keys()->toArray())
@@ -227,8 +227,8 @@  discard block
 block discarded – undo
227 227
      */
228 228
     private function durationConverter($item)
229 229
     {
230
-        return $item->each(function ($item2) {
231
-            $item2->duration = $this->convertDuration((int)$item2->duration);
230
+        return $item->each(function($item2) {
231
+            $item2->duration = $this->convertDuration((int) $item2->duration);
232 232
             return $item2;
233 233
             //TODO try catch
234 234
         });
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
      */
241 241
     static private function convertDuration($duration)
242 242
     {
243
-        return (int)ceil($duration / config('app.timeslots.duration'));
243
+        return (int) ceil($duration / config('app.timeslots.duration'));
244 244
     }
245 245
 
246 246
     /**
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
      */
250 250
     private function timeSlotsConverter($item)
251 251
     {
252
-        return $item->each(function ($item2) {
252
+        return $item->each(function($item2) {
253 253
             $item2->time_start = $this->toTimeSlot($item2->time_start);
254 254
             $item2->time_end = $this->toTimeSlot($item2->time_end);
255 255
             return $item2;
@@ -267,13 +267,13 @@  discard block
 block discarded – undo
267 267
         $dateTime = new \DateTime($time);
268 268
         $diff = $dateTime->diff($this->startTime);
269 269
         $diff = explode(':', $diff->format('%R:%d:%h:%i:%s'));
270
-        $diff = $diff[1] * 86400 + $diff[2] * 3600 + $diff[3] * 60 + $diff[4];
270
+        $diff = $diff[ 1 ] * 86400 + $diff[ 2 ] * 3600 + $diff[ 3 ] * 60 + $diff[ 4 ];
271 271
         //if($diff[0] != '-' && $diff != 0)
272 272
         //  throw new OptimiseException('timeslot time <= startTime');
273 273
         //TODO fix check
274 274
         //TODO check if diff makes sense
275 275
         //TODO check upper limit
276
-        return (int)(round($diff / config('app.timeslots.duration')) + 1); //TODO can round cause overlaps?
276
+        return (int) (round($diff / config('app.timeslots.duration')) + 1); //TODO can round cause overlaps?
277 277
     }
278 278
 
279 279
     /**
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
      */
284 284
     static private function getAvailabilityArray(\Illuminate\Support\Collection $timeSlots, $timeslotsN, $free = true)
285 285
     {
286
-        $ret = [];
286
+        $ret = [ ];
287 287
         foreach ($timeSlots as $id => $timeSlots2) {
288 288
             $ret = self::fillTimeSlots($ret, $id, $timeSlots2, $free ? '1' : '0');
289 289
             $ret = self::fillRow($ret, $id, $timeslotsN, $free ? '0' : '1');
@@ -302,9 +302,9 @@  discard block
 block discarded – undo
302 302
     static private function fillTimeSlots(array $array, $id, \Illuminate\Support\Collection $timeSlots, $fill = '0')
303 303
     {
304 304
         foreach ($timeSlots as $timeSlot) {
305
-            if (!isset($array[$id]))
306
-                $array[$id] = [];
307
-            $array[$id] = self::arrayPadInterval($array[$id], $timeSlot->time_start, $timeSlot->time_end, $fill);
305
+            if (!isset($array[ $id ]))
306
+                $array[ $id ] = [ ];
307
+            $array[ $id ] = self::arrayPadInterval($array[ $id ], $timeSlot->time_start, $timeSlot->time_end, $fill);
308 308
         }
309 309
         return $array;
310 310
     }
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
     static private function arrayPadInterval(array $array, $from, $to, $pad = '0')
320 320
     {
321 321
         for ($i = $from; $i < $to; $i++)
322
-            $array[$i] = $pad;
322
+            $array[ $i ] = $pad;
323 323
         return $array;
324 324
     }
325 325
 
@@ -332,8 +332,8 @@  discard block
 block discarded – undo
332 332
     static private function fillRow(array $array, $id, $until, $fill = '0')
333 333
     {
334 334
         for ($i = 1; $i <= $until; $i++) {
335
-            if (!isset($array[$id][$i]))
336
-                $array[$id][$i] = $fill;
335
+            if (!isset($array[ $id ][ $i ]))
336
+                $array[ $id ][ $i ] = $fill;
337 337
         }
338 338
 
339 339
         return $array;
@@ -350,7 +350,7 @@  discard block
 block discarded – undo
350 350
          * @var $users \Illuminate\Support\Collection
351 351
          */
352 352
         $users = collect($this->company->getEmployeesTimeSlots($this->startTime, $this->endTime));
353
-        $timeslots = $users->groupBy('id')->map(function ($item) { //convert timeslots
353
+        $timeslots = $users->groupBy('id')->map(function($item) { //convert timeslots
354 354
             return $this->timeSlotsConverter($item);
355 355
         });
356 356
         return $solver->setUsersAvailability(self::getAvailabilityArray($timeslots, $this->time_slots, false));
@@ -381,14 +381,14 @@  discard block
 block discarded – undo
381 381
      */
382 382
     static private function getUsersMeetingsArray($users, $meetings, \Illuminate\Support\Collection $usersMeetings)
383 383
     {
384
-        $ret = [];
384
+        $ret = [ ];
385 385
         foreach ($users as $user) {
386 386
             $usersMeetingsTmp = $usersMeetings->get($user);
387 387
             foreach ($meetings as $meeting) {
388 388
                 if ($usersMeetingsTmp->contains('meeting_id', $meeting)) {
389
-                    $ret[$user][$meeting] = 1;
389
+                    $ret[ $user ][ $meeting ] = 1;
390 390
                 } else {
391
-                    $ret[$user][$meeting] = 0;
391
+                    $ret[ $user ][ $meeting ] = 0;
392 392
                 }
393 393
             }
394 394
         }
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
     {
429 429
         $meetings = $solver->getYResults();
430 430
         foreach ($meetings as $id => $meeting) {
431
-            $meetingO = \plunner\Meeting::findOrFail($id);//TODO catch error
431
+            $meetingO = \plunner\Meeting::findOrFail($id); //TODO catch error
432 432
             $meetingO->start_time = $this->toDateTime(array_search('1', $meeting));
433 433
             $meetingO->save();
434 434
         }
@@ -441,7 +441,7 @@  discard block
 block discarded – undo
441 441
     private function toDateTime($timeslot)
442 442
     {
443 443
         $ret = clone $this->startTime;
444
-        return $ret->add(new \DateInterval('PT' . (($timeslot - 1) * config('app.timeslots.duration')) . 'S'));
444
+        return $ret->add(new \DateInterval('PT'.(($timeslot - 1) * config('app.timeslots.duration')).'S'));
445 445
     }
446 446
 
447 447
     /**
@@ -453,7 +453,7 @@  discard block
 block discarded – undo
453 453
         foreach ($employeesMeetings as $eId => $employeeMeetings) {
454 454
             $employee = \plunner\Employee::findOrFail($eId);
455 455
             $employeeMeetings = collect($employeeMeetings);
456
-            $employeeMeetings = $employeeMeetings->filter(function ($item) {
456
+            $employeeMeetings = $employeeMeetings->filter(function($item) {
457 457
                 return $item == 1;
458 458
             });
459 459
             $employee->meetings()->attach($employeeMeetings->keys()->toArray());
Please login to merge, or discard this patch.
app/Http/Controllers/Companies/Company/CompanyController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@  discard block
 block discarded – undo
10 10
 {
11 11
     public function __construct()
12 12
     {
13
-        config(['auth.model' => \plunner\Company::class]);
14
-        config(['jwt.user' => \plunner\Company::class]);
13
+        config([ 'auth.model' => \plunner\Company::class ]);
14
+        config([ 'jwt.user' => \plunner\Company::class ]);
15 15
         $this->middleware('jwt.authandrefresh:mode-cn');
16 16
     }
17 17
 
@@ -36,9 +36,9 @@  discard block
 block discarded – undo
36 36
     public function update(CompanyRequest $request)
37 37
     {
38 38
         $company = \Auth::user();
39
-        $input = $request->only(['name', 'password']);
40
-        if (isset($input['password']))
41
-            $input['password'] = bcrypt($input['password']);
39
+        $input = $request->only([ 'name', 'password' ]);
40
+        if (isset($input[ 'password' ]))
41
+            $input[ 'password' ] = bcrypt($input[ 'password' ]);
42 42
         $company->update($input);
43 43
         return $company;
44 44
     }
Please login to merge, or discard this patch.
app/Http/Controllers/Employees/Employee/EmployeeController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@  discard block
 block discarded – undo
10 10
 {
11 11
     public function __construct()
12 12
     {
13
-        config(['auth.model' => \plunner\Employee::class]);
14
-        config(['jwt.user' => \plunner\Employee::class]);
13
+        config([ 'auth.model' => \plunner\Employee::class ]);
14
+        config([ 'jwt.user' => \plunner\Employee::class ]);
15 15
         $this->middleware('jwt.authandrefresh:mode-en');
16 16
     }
17 17
 
@@ -36,9 +36,9 @@  discard block
 block discarded – undo
36 36
     public function update(EmployeeRequest $request)
37 37
     {
38 38
         $employee = \Auth::user();
39
-        $input = $request->only(['name', 'password']);
40
-        if (isset($input['password']))
41
-            $input['password'] = bcrypt($input['password']);
39
+        $input = $request->only([ 'name', 'password' ]);
40
+        if (isset($input[ 'password' ]))
41
+            $input[ 'password' ] = bcrypt($input[ 'password' ]);
42 42
         $employee->update($input);
43 43
         return $employee;
44 44
     }
Please login to merge, or discard this patch.