@@ -11,6 +11,6 @@ |
||
11 | 11 | | |
12 | 12 | */ |
13 | 13 | |
14 | -Broadcast::channel('users.{id}', function ($user, $id) { |
|
14 | +Broadcast::channel('users.{id}', function($user, $id) { |
|
15 | 15 | return (int) $user->id === (int) $id; |
16 | 16 | }); |
@@ -63,7 +63,7 @@ |
||
63 | 63 | return \Response::json(['errors' => [$errors]], $exception->getStatusCode()); |
64 | 64 | } elseif ($exception instanceof \Illuminate\Validation\ValidationException) { |
65 | 65 | return \Response::json(['errors' => $exception->errors()], 422); |
66 | - } elseif (! $exception instanceof \Symfony\Component\ErrorHandler\Error\FatalError) { |
|
66 | + } elseif ( ! $exception instanceof \Symfony\Component\ErrorHandler\Error\FatalError) { |
|
67 | 67 | return parent::render($request, $exception); |
68 | 68 | } |
69 | 69 | } |
@@ -25,7 +25,7 @@ |
||
25 | 25 | { |
26 | 26 | $this->registerPolicies(); |
27 | 27 | |
28 | - Passport::routes(function ($router) { |
|
28 | + Passport::routes(function($router) { |
|
29 | 29 | $router->forAuthorization(); |
30 | 30 | $router->forAccessTokens(); |
31 | 31 | $router->forPersonalAccessTokens(); |
@@ -56,8 +56,8 @@ discard block |
||
56 | 56 | $permission = $routeActions[1]; |
57 | 57 | |
58 | 58 | $this->auth->shouldUse('api'); |
59 | - if (! in_array($permission, $skipLoginCheck)) { |
|
60 | - $this->authMiddleware->handle($request, function ($request) use ($modelName, $skipPermissionCheck, $skipLoginCheck, $permission) { |
|
59 | + if ( ! in_array($permission, $skipLoginCheck)) { |
|
60 | + $this->authMiddleware->handle($request, function($request) use ($modelName, $skipPermissionCheck, $skipLoginCheck, $permission) { |
|
61 | 61 | $user = $this->auth->user(); |
62 | 62 | $isPasswordClient = $user->token()->client->password_client; |
63 | 63 | |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | } |
67 | 67 | |
68 | 68 | if ($isPasswordClient && (in_array($permission, $skipPermissionCheck) || $this->userService->can($permission, $modelName))) { |
69 | - } elseif (! $isPasswordClient && $user->tokenCan($modelName.'-'.$permission)) { |
|
69 | + } elseif ( ! $isPasswordClient && $user->tokenCan($modelName.'-'.$permission)) { |
|
70 | 70 | } else { |
71 | 71 | \Errors::noPermissions(); |
72 | 72 | } |
@@ -74,7 +74,7 @@ |
||
74 | 74 | if ($this->cacheConfig && $this->cacheConfig == 'cache') { |
75 | 75 | $page = \Request::get('page') !== null ? \Request::get('page') : '1'; |
76 | 76 | $cacheKey = $name.$page.\Session::get('locale').serialize($arguments); |
77 | - return $this->cache->tags([$this->cacheTag])->rememberForever($cacheKey, function () use ($arguments, $name) { |
|
77 | + return $this->cache->tags([$this->cacheTag])->rememberForever($cacheKey, function() use ($arguments, $name) { |
|
78 | 78 | return call_user_func_array([$this->repo, $name], $arguments); |
79 | 79 | }); |
80 | 80 | } elseif ($this->cacheConfig && $this->cacheConfig == 'clear') { |
@@ -49,7 +49,7 @@ |
||
49 | 49 | |
50 | 50 | $response = \ApiConsumer::post('/oauth/token', $data); |
51 | 51 | |
52 | - if (! $response->isSuccessful()) { |
|
52 | + if ( ! $response->isSuccessful()) { |
|
53 | 53 | if ($grantType == 'refresh_token') { |
54 | 54 | \Errors::invalidRefreshToken(); |
55 | 55 | } |
@@ -36,7 +36,7 @@ |
||
36 | 36 | public function updated($model) |
37 | 37 | { |
38 | 38 | if ($model->isDirty('blocked') && $model->blocked) { |
39 | - $model->tokens()->each(function ($token) { |
|
39 | + $model->tokens()->each(function($token) { |
|
40 | 40 | \Core::oauthClients()->revokeAccessToken($token); |
41 | 41 | }); |
42 | 42 | } |
@@ -43,9 +43,9 @@ |
||
43 | 43 | /** |
44 | 44 | * Check report existance and permission. |
45 | 45 | */ |
46 | - if (! $report) { |
|
46 | + if ( ! $report) { |
|
47 | 47 | \Errors::notFound('report'); |
48 | - } elseif (! $skipPermission && ! $this->userService->can($report->view_name, 'report')) { |
|
48 | + } elseif ( ! $skipPermission && ! $this->userService->can($report->view_name, 'report')) { |
|
49 | 49 | \Errors::noPermissions(); |
50 | 50 | } |
51 | 51 |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | */ |
20 | 20 | public function __construct($model) |
21 | 21 | { |
22 | - $this->model = $model; |
|
22 | + $this->model = $model; |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | $model = false; |
85 | 85 | $relations = []; |
86 | 86 | |
87 | - \DB::transaction(function () use (&$model, $relations, $data) { |
|
87 | + \DB::transaction(function() use (&$model, $relations, $data) { |
|
88 | 88 | |
89 | 89 | $model = $this->prepareModel($data); |
90 | 90 | $relations = $this->prepareRelations($data, $model); |
@@ -104,8 +104,8 @@ discard block |
||
104 | 104 | */ |
105 | 105 | public function delete($value, $attribute = 'id') |
106 | 106 | { |
107 | - \DB::transaction(function () use ($value, $attribute) { |
|
108 | - $this->model->where($attribute, '=', $value)->lockForUpdate()->get()->each(function ($model) { |
|
107 | + \DB::transaction(function() use ($value, $attribute) { |
|
108 | + $this->model->where($attribute, '=', $value)->lockForUpdate()->get()->each(function($model) { |
|
109 | 109 | $model->delete(); |
110 | 110 | }); |
111 | 111 | }); |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | { |
196 | 196 | $model = $this->model->onlyTrashed()->find($id); |
197 | 197 | |
198 | - if (! $model) { |
|
198 | + if ( ! $model) { |
|
199 | 199 | \Errors::notFound(class_basename($this->model).' with id : '.$id); |
200 | 200 | } |
201 | 201 | |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | * @var array |
220 | 220 | */ |
221 | 221 | $model = Arr::has($data, 'id') ? $modelClass->lockForUpdate()->find($data['id']) : new $modelClass; |
222 | - if (! $model) { |
|
222 | + if ( ! $model) { |
|
223 | 223 | \Errors::notFound(class_basename($modelClass).' with id : '.$data['id']); |
224 | 224 | } |
225 | 225 | |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | * If the relation has no value then marke the relation data |
270 | 270 | * related to the model to be deleted. |
271 | 271 | */ |
272 | - if (! $value || ! count($value)) { |
|
272 | + if ( ! $value || ! count($value)) { |
|
273 | 273 | $relations[$relation] = 'delete'; |
274 | 274 | } |
275 | 275 | } |
@@ -296,7 +296,7 @@ discard block |
||
296 | 296 | /** |
297 | 297 | * If model doesn't exists. |
298 | 298 | */ |
299 | - if (! $relationModel) { |
|
299 | + if ( ! $relationModel) { |
|
300 | 300 | \Errors::notFound(class_basename($relationBaseModel).' with id : '.$val['id']); |
301 | 301 | } |
302 | 302 | |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | /** |
328 | 328 | * If model doesn't exists. |
329 | 329 | */ |
330 | - if (! $relationModel) { |
|
330 | + if ( ! $relationModel) { |
|
331 | 331 | \Errors::notFound(class_basename($relationBaseModel).' with id : '.$value['id']); |
332 | 332 | } |
333 | 333 | |
@@ -533,7 +533,7 @@ discard block |
||
533 | 533 | $value = $removeLast === false ? $value : substr($value, 0, $removeLast); |
534 | 534 | $path = explode('->', $value); |
535 | 535 | $field = array_shift($path); |
536 | - $result = sprintf('%s->\'$.%s\'', $field, collect($path)->map(function ($part) { |
|
536 | + $result = sprintf('%s->\'$.%s\'', $field, collect($path)->map(function($part) { |
|
537 | 537 | return '"'.$part.'"'; |
538 | 538 | })->implode('.')); |
539 | 539 |