@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | |
21 | 21 | $transformData = $this->transformData($model); |
22 | 22 | |
23 | - $data = array_filter($transformData, function ($v) { |
|
23 | + $data = array_filter($transformData, function($v) { |
|
24 | 24 | if (is_null($v)) { |
25 | 25 | return false; |
26 | 26 | } |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | |
31 | 31 | // 转换 null 字段为空字符串 |
32 | 32 | foreach (array_keys($model->toArray()) as $key) { |
33 | - if (! isset($data[$key])) { |
|
33 | + if (!isset($data[$key])) { |
|
34 | 34 | $data[$key] = ''; |
35 | 35 | continue; |
36 | 36 | } |
@@ -38,7 +38,7 @@ |
||
38 | 38 | */ |
39 | 39 | public function typeMessage() |
40 | 40 | { |
41 | - if (! array_key_exists($this->wrappedObject->type, $this->type_messages)) { |
|
41 | + if (!array_key_exists($this->wrappedObject->type, $this->type_messages)) { |
|
42 | 42 | throw new \Exception('Type '.$this->wrappedObject->type.'not exists'); |
43 | 43 | } |
44 | 44 |
@@ -41,7 +41,7 @@ |
||
41 | 41 | $process = new Process('php '.base_path('vendor/bin/php-cs-fixer').' fix'); |
42 | 42 | |
43 | 43 | try { |
44 | - $process->run(function ($type, $buffer) { |
|
44 | + $process->run(function($type, $buffer) { |
|
45 | 45 | if (Process::ERR === $type) { |
46 | 46 | $this->error($buffer); |
47 | 47 | } else { |
@@ -37,7 +37,7 @@ |
||
37 | 37 | public function __call($method, $args) |
38 | 38 | { |
39 | 39 | $property = snake_case(str_replace('get', '', $method)); |
40 | - if (! isset($this->$property) || $this->$property === null) { |
|
40 | + if (!isset($this->$property) || $this->$property === null) { |
|
41 | 41 | throw new \Exception('请在 Event 中设置 '.$property); |
42 | 42 | } |
43 | 43 |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | $include = $include_manager->getIncludable($include_name); |
45 | 45 | $include->setColumns(array_get($param_columns, $include_name, [])); |
46 | 46 | |
47 | - if (! $include->getForeignKey()) { |
|
47 | + if (!$include->getForeignKey()) { |
|
48 | 48 | $this->with($include->getRelation()); |
49 | 49 | } else { |
50 | 50 | $this->withOnly($include->getRelation(), $include->figureOutWhichColumns(), $include->isWithTrashed()); |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | { |
69 | 69 | $method_name = camel_case('include_'.str_replace('.', '_', $name)); |
70 | 70 | |
71 | - if (! method_exists($this, $method_name)) { |
|
71 | + if (!method_exists($this, $method_name)) { |
|
72 | 72 | throw new Exception("You should define $method_name in your repository"); |
73 | 73 | } |
74 | 74 |
@@ -41,7 +41,7 @@ |
||
41 | 41 | */ |
42 | 42 | public function store(array $attributes) |
43 | 43 | { |
44 | - if (! is_null($this->validator)) { |
|
44 | + if (!is_null($this->validator)) { |
|
45 | 45 | $this->validator->with($attributes) |
46 | 46 | ->passesOrFail(ValidatorInterface::RULE_CREATE); |
47 | 47 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | $filter = $this->request->get(config('repository.criteria.params.filter', 'filter'), null); |
22 | 22 | $orderBy = $this->request->get(config('repository.criteria.params.orderBy', 'orderBy'), null); |
23 | 23 | $sortedBy = $this->request->get(config('repository.criteria.params.sortedBy', 'sortedBy'), 'asc'); |
24 | - $sortedBy = ! empty($sortedBy) ? $sortedBy : 'asc'; |
|
24 | + $sortedBy = !empty($sortedBy) ? $sortedBy : 'asc'; |
|
25 | 25 | |
26 | 26 | if ($search && is_array($fieldsSearchable) && count($fieldsSearchable)) { |
27 | 27 | $searchFields = is_array($searchFields) || is_null($searchFields) ? $searchFields : explode(';', |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | $search = $this->parserSearchValue($search); |
33 | 33 | $modelForceAndWhere = false; |
34 | 34 | |
35 | - $builder = $builder->where(function ($query) use ( |
|
35 | + $builder = $builder->where(function($query) use ( |
|
36 | 36 | $fields, |
37 | 37 | $search, |
38 | 38 | $searchData, |
@@ -52,18 +52,18 @@ discard block |
||
52 | 52 | if (isset($searchData[$field])) { |
53 | 53 | $value = $condition === 'like' ? "%{$searchData[$field]}%" : $searchData[$field]; |
54 | 54 | } else { |
55 | - if (! is_null($search)) { |
|
55 | + if (!is_null($search)) { |
|
56 | 56 | $value = $condition === 'like' ? "%{$search}%" : $search; |
57 | 57 | } |
58 | 58 | } |
59 | 59 | |
60 | 60 | if ($isFirstField || $modelForceAndWhere) { |
61 | - if (! is_null($value)) { |
|
61 | + if (!is_null($value)) { |
|
62 | 62 | $query->where($field, $condition, $value); |
63 | 63 | $isFirstField = false; |
64 | 64 | } |
65 | 65 | } else { |
66 | - if (! is_null($value)) { |
|
66 | + if (!is_null($value)) { |
|
67 | 67 | $query->orWhere($field, $condition, $value); |
68 | 68 | } |
69 | 69 | } |
@@ -43,7 +43,7 @@ |
||
43 | 43 | { |
44 | 44 | $route = $this->router->getCurrentRoute(); |
45 | 45 | |
46 | - if (! $this->auth->check(false)) { |
|
46 | + if (!$this->auth->check(false)) { |
|
47 | 47 | $this->auth->authenticate($route->getAuthProviders()); |
48 | 48 | } |
49 | 49 |
@@ -3,21 +3,21 @@ discard block |
||
3 | 3 | /* |
4 | 4 | * 申请 access_token 或者刷新 access_token. |
5 | 5 | */ |
6 | -$router->post('oauth/access_token', function () { |
|
6 | +$router->post('oauth/access_token', function() { |
|
7 | 7 | return Response::json(Authorizer::issueAccessToken()); |
8 | 8 | }); |
9 | 9 | |
10 | 10 | /* |
11 | 11 | * 此分组下路由 需要通过 login-token 方式认证的 access token |
12 | 12 | */ |
13 | -$router->group(['middleware' => 'oauth2:user'], function ($router) { |
|
13 | +$router->group(['middleware' => 'oauth2:user'], function($router) { |
|
14 | 14 | |
15 | 15 | // 发布内容单独设置频率限制 |
16 | 16 | $router->group([ |
17 | 17 | 'middleware' => 'api.throttle', |
18 | 18 | 'limit' => config('api.rate_limits.publish.limits'), |
19 | 19 | 'expires' => config('api.rate_limits.publish.expires'), |
20 | - ], function ($router) { |
|
20 | + ], function($router) { |
|
21 | 21 | $router->post('topics', 'TopicsController@store'); |
22 | 22 | $router->post('replies', 'RepliesController@store'); |
23 | 23 | }); |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | 'middleware' => 'api.throttle', |
27 | 27 | 'limit' => config('api.rate_limits.access.limits'), |
28 | 28 | 'expires' => config('api.rate_limits.access.expires'), |
29 | - ], function ($router) { |
|
29 | + ], function($router) { |
|
30 | 30 | // Users |
31 | 31 | $router->get('me', 'UsersController@me'); |
32 | 32 | $router->put('users/{id}', 'UsersController@update'); |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | 'middleware' => ['oauth2', 'api.throttle'], |
58 | 58 | 'limit' => config('api.rate_limits.access.limits'), |
59 | 59 | 'expires' => config('api.rate_limits.access.expires'), |
60 | -], function ($router) { |
|
60 | +], function($router) { |
|
61 | 61 | $router->get('topics/{id}', 'TopicsController@show'); |
62 | 62 | //Topics |
63 | 63 | $router->get('topics', 'TopicsController@index'); |