@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | $query = $query->contain(['Shops']); |
| 114 | 114 | $query = $query->where(['api_key' => $apiKey, 'token' => $accessToken]); |
| 115 | 115 | $query = $query->where( |
| 116 | - function ($exp, $q) { |
|
| 116 | + function($exp, $q) { |
|
| 117 | 117 | return $exp->isNull('expired_at'); |
| 118 | 118 | } |
| 119 | 119 | ); |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | $query = $query->contain(['Shops']); |
| 134 | 134 | $query = $query->where(['api_key' => $apiKey, 'Shops.myshopify_domain' => $shopDomain]); |
| 135 | 135 | $query = $query->where( |
| 136 | - function ($exp, $q) { |
|
| 136 | + function($exp, $q) { |
|
| 137 | 137 | return $exp->isNull('expired_at'); |
| 138 | 138 | } |
| 139 | 139 | ); |
@@ -81,7 +81,7 @@ |
||
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | /** |
| 84 | - * @param string $accesstoken |
|
| 84 | + * @param string $accessToken |
|
| 85 | 85 | * @param int $shopId |
| 86 | 86 | * @param string $apiKey |
| 87 | 87 | * @return array|bool |
@@ -66,7 +66,7 @@ |
||
| 66 | 66 | $scope = array_map('strtolower', $scope); |
| 67 | 67 | array_walk( |
| 68 | 68 | $scope, |
| 69 | - function (&$value) { |
|
| 69 | + function(&$value) { |
|
| 70 | 70 | $value = str_replace(" ", "_", $value); |
| 71 | 71 | } |
| 72 | 72 | ); |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | /** |
| 74 | 74 | * @param Request $request |
| 75 | 75 | * @param Response $response |
| 76 | - * @return null|Response |
|
| 76 | + * @return null|string |
|
| 77 | 77 | */ |
| 78 | 78 | public function unauthenticated(Request $request, Response $response) |
| 79 | 79 | { |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | } |
| 185 | 185 | |
| 186 | 186 | /** |
| 187 | - * @return Router |
|
| 187 | + * @return string |
|
| 188 | 188 | */ |
| 189 | 189 | private function _generateLoginUrl() |
| 190 | 190 | { |