@@ -10,8 +10,8 @@ discard block |
||
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 |
||
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 | } |
@@ -37,8 +37,9 @@ |
||
37 | 37 | { |
38 | 38 | $company = \Auth::user(); |
39 | 39 | $input = $request->only(['name', 'password']); |
40 | - if (isset($input['password'])) |
|
41 | - $input['password'] = bcrypt($input['password']); |
|
40 | + if (isset($input['password'])) { |
|
41 | + $input['password'] = bcrypt($input['password']); |
|
42 | + } |
|
42 | 43 | $company->update($input); |
43 | 44 | return $company; |
44 | 45 | } |
@@ -10,8 +10,8 @@ discard block |
||
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 |
||
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 | } |
@@ -37,8 +37,9 @@ |
||
37 | 37 | { |
38 | 38 | $employee = \Auth::user(); |
39 | 39 | $input = $request->only(['name', 'password']); |
40 | - if (isset($input['password'])) |
|
41 | - $input['password'] = bcrypt($input['password']); |
|
40 | + if (isset($input['password'])) { |
|
41 | + $input['password'] = bcrypt($input['password']); |
|
42 | + } |
|
42 | 43 | $employee->update($input); |
43 | 44 | return $employee; |
44 | 45 | } |