Completed
Push — master ( d727df...dec756 )
by
09:57 queued 02:20
created
app/Repositories/Criteria/BaseCriteria.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
                     }
Please login to merge, or discard this patch.
app/Repositories/Criteria/FilterManager.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Created by PhpStorm.
4
- * User: xuan
5
- * Date: 10/23/15
6
- * Time: 10:39 AM.
7
- */
3
+     * Created by PhpStorm.
4
+     * User: xuan
5
+     * Date: 10/23/15
6
+     * Time: 10:39 AM.
7
+     */
8 8
 namespace PHPHub\Repositories\Criteria;
9 9
 
10 10
 use Input;
Please login to merge, or discard this patch.
app/Http/Middleware/OAuthMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
app/Http/api_routes.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -3,21 +3,21 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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');
Please login to merge, or discard this patch.
app/Services/PushService/JPush.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     public function platform($platform)
40 40
     {
41
-        if (! in_array($platform, ['ios', 'android', 'winphone', 'all'])) {
41
+        if (!in_array($platform, ['ios', 'android', 'winphone', 'all'])) {
42 42
             throw new \InvalidArgumentException('Invalid device type: '.$platform);
43 43
         }
44 44
 
Please login to merge, or discard this patch.