@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | * @param string $token |
| 44 | 44 | * @param null|Pool $pool |
| 45 | 45 | */ |
| 46 | - public function __construct (string $token, Pool $pool = null) { |
|
| 46 | + public function __construct(string $token, Pool $pool = null) { |
|
| 47 | 47 | $this->token = $token; |
| 48 | 48 | $this->pool = $pool ?? new Pool(); |
| 49 | 49 | } |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | * @param array $curlOpts |
| 57 | 57 | * @return null|array |
| 58 | 58 | */ |
| 59 | - public function call (string $method, string $path, array $curlOpts = []) { |
|
| 59 | + public function call(string $method, string $path, array $curlOpts = []) { |
|
| 60 | 60 | $this->getLog()->log(LOG_DEBUG, "{$method} {$path}", $curlOpts); |
| 61 | 61 | $ch = curl_init(); |
| 62 | 62 | curl_setopt_array($ch, [ |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | * @param resource $ch |
| 79 | 79 | * @return null|array |
| 80 | 80 | */ |
| 81 | - protected function call_loop ($ch) { |
|
| 81 | + protected function call_loop($ch) { |
|
| 82 | 82 | $response = curl_exec($ch); |
| 83 | 83 | $info = curl_getinfo($ch); |
| 84 | 84 | if ($response === false) { |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | switch ($info['http_code']) { |
| 92 | 92 | case 200: |
| 93 | 93 | case 201: |
| 94 | - return json_decode($body, true, JSON_BIGINT_AS_STRING | JSON_THROW_ON_ERROR); |
|
| 94 | + return json_decode($body, true, JSON_BIGINT_AS_STRING|JSON_THROW_ON_ERROR); |
|
| 95 | 95 | case 404: |
| 96 | 96 | return null; |
| 97 | 97 | case 429: |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | * |
| 111 | 111 | * @param string $path |
| 112 | 112 | */ |
| 113 | - public function delete (string $path): void { |
|
| 113 | + public function delete(string $path): void { |
|
| 114 | 114 | $this->call('DELETE', $path); |
| 115 | 115 | } |
| 116 | 116 | |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | * @param array $data |
| 125 | 125 | * @return mixed|Data|AbstractEntity |
| 126 | 126 | */ |
| 127 | - public function factory ($caller, string $class, array $data = []) { |
|
| 127 | + public function factory($caller, string $class, array $data = []) { |
|
| 128 | 128 | return new $class($caller, $data); |
| 129 | 129 | } |
| 130 | 130 | |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | * @param array $query |
| 136 | 136 | * @return null|array |
| 137 | 137 | */ |
| 138 | - public function get (string $path, array $query = []) { |
|
| 138 | + public function get(string $path, array $query = []) { |
|
| 139 | 139 | return $this->call('GET', $path . '?' . http_build_query($query))['data'] ?? null; |
| 140 | 140 | } |
| 141 | 141 | |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | * @param string $gid |
| 146 | 146 | * @return null|Attachment |
| 147 | 147 | */ |
| 148 | - public function getAttachment (string $gid) { |
|
| 148 | + public function getAttachment(string $gid) { |
|
| 149 | 149 | return $this->load($this, Attachment::class, "attachments/{$gid}"); |
| 150 | 150 | } |
| 151 | 151 | |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | * @param string $gid |
| 156 | 156 | * @return null|CustomField |
| 157 | 157 | */ |
| 158 | - public function getCustomField (string $gid) { |
|
| 158 | + public function getCustomField(string $gid) { |
|
| 159 | 159 | return $this->load($this, CustomField::class, "custom_fields/{$gid}"); |
| 160 | 160 | } |
| 161 | 161 | |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | * |
| 167 | 167 | * @return Workspace |
| 168 | 168 | */ |
| 169 | - public function getDefaultWorkspace () { |
|
| 169 | + public function getDefaultWorkspace() { |
|
| 170 | 170 | return $this->getMe()->getDefaultWorkspace(); |
| 171 | 171 | } |
| 172 | 172 | |
@@ -174,21 +174,21 @@ discard block |
||
| 174 | 174 | * @param string $gid |
| 175 | 175 | * @return null|Job |
| 176 | 176 | */ |
| 177 | - public function getJob (string $gid) { |
|
| 177 | + public function getJob(string $gid) { |
|
| 178 | 178 | return $this->load($this, Job::class, "jobs/{$gid}"); |
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | /** |
| 182 | 182 | * @return LoggerInterface |
| 183 | 183 | */ |
| 184 | - public function getLog () { |
|
| 184 | + public function getLog() { |
|
| 185 | 185 | return $this->log ?? $this->log = new NullLogger(); |
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | /** |
| 189 | 189 | * @return User |
| 190 | 190 | */ |
| 191 | - public function getMe () { |
|
| 191 | + public function getMe() { |
|
| 192 | 192 | return $this->getUser('me'); |
| 193 | 193 | } |
| 194 | 194 | |
@@ -196,14 +196,14 @@ discard block |
||
| 196 | 196 | * @param string $gid |
| 197 | 197 | * @return null|OrganizationExport |
| 198 | 198 | */ |
| 199 | - public function getOrganizationExport (string $gid) { |
|
| 199 | + public function getOrganizationExport(string $gid) { |
|
| 200 | 200 | return $this->load($this, OrganizationExport::class, "organization_exports/{$gid}"); |
| 201 | 201 | } |
| 202 | 202 | |
| 203 | 203 | /** |
| 204 | 204 | * @return Pool |
| 205 | 205 | */ |
| 206 | - public function getPool () { |
|
| 206 | + public function getPool() { |
|
| 207 | 207 | return $this->pool; |
| 208 | 208 | } |
| 209 | 209 | |
@@ -213,7 +213,7 @@ discard block |
||
| 213 | 213 | * @param string $gid |
| 214 | 214 | * @return null|Portfolio |
| 215 | 215 | */ |
| 216 | - public function getPortfolio (string $gid) { |
|
| 216 | + public function getPortfolio(string $gid) { |
|
| 217 | 217 | return $this->load($this, Portfolio::class, "portfolios/{$gid}"); |
| 218 | 218 | } |
| 219 | 219 | |
@@ -223,7 +223,7 @@ discard block |
||
| 223 | 223 | * @param string $gid |
| 224 | 224 | * @return null|Project |
| 225 | 225 | */ |
| 226 | - public function getProject (string $gid) { |
|
| 226 | + public function getProject(string $gid) { |
|
| 227 | 227 | return $this->load($this, Project::class, "projects/{$gid}"); |
| 228 | 228 | } |
| 229 | 229 | |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | * @param string $gid |
| 232 | 232 | * @return null|ProjectWebhook |
| 233 | 233 | */ |
| 234 | - public function getProjectWebhook (string $gid) { |
|
| 234 | + public function getProjectWebhook(string $gid) { |
|
| 235 | 235 | return $this->load($this, ProjectWebhook::class, "webhooks/{$gid}"); |
| 236 | 236 | } |
| 237 | 237 | |
@@ -241,7 +241,7 @@ discard block |
||
| 241 | 241 | * @param string $gid |
| 242 | 242 | * @return null|Section |
| 243 | 243 | */ |
| 244 | - public function getSection (string $gid) { |
|
| 244 | + public function getSection(string $gid) { |
|
| 245 | 245 | return $this->load($this, Section::class, "sections/{$gid}"); |
| 246 | 246 | } |
| 247 | 247 | |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | * @param string $gid |
| 252 | 252 | * @return null|Story |
| 253 | 253 | */ |
| 254 | - public function getStory (string $gid) { |
|
| 254 | + public function getStory(string $gid) { |
|
| 255 | 255 | return $this->load($this, Story::class, "stories/{$gid}"); |
| 256 | 256 | } |
| 257 | 257 | |
@@ -261,7 +261,7 @@ discard block |
||
| 261 | 261 | * @param string $gid |
| 262 | 262 | * @return null|Tag |
| 263 | 263 | */ |
| 264 | - public function getTag (string $gid) { |
|
| 264 | + public function getTag(string $gid) { |
|
| 265 | 265 | return $this->load($this, Tag::class, "tags/{$gid}"); |
| 266 | 266 | } |
| 267 | 267 | |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | * @param string $gid |
| 272 | 272 | * @return null|Task |
| 273 | 273 | */ |
| 274 | - public function getTask (string $gid) { |
|
| 274 | + public function getTask(string $gid) { |
|
| 275 | 275 | return $this->load($this, Task::class, "tasks/{$gid}"); |
| 276 | 276 | } |
| 277 | 277 | |
@@ -281,7 +281,7 @@ discard block |
||
| 281 | 281 | * @param string $gid |
| 282 | 282 | * @return null|TaskList |
| 283 | 283 | */ |
| 284 | - public function getTaskList (string $gid) { |
|
| 284 | + public function getTaskList(string $gid) { |
|
| 285 | 285 | return $this->load($this, TaskList::class, "user_task_lists/{$gid}"); |
| 286 | 286 | } |
| 287 | 287 | |
@@ -289,7 +289,7 @@ discard block |
||
| 289 | 289 | * @param string $gid |
| 290 | 290 | * @return null|TaskWebhook |
| 291 | 291 | */ |
| 292 | - public function getTaskWebhook (string $gid) { |
|
| 292 | + public function getTaskWebhook(string $gid) { |
|
| 293 | 293 | return $this->load($this, TaskWebhook::class, "webhooks/{$gid}"); |
| 294 | 294 | } |
| 295 | 295 | |
@@ -299,7 +299,7 @@ discard block |
||
| 299 | 299 | * @param string $gid |
| 300 | 300 | * @return null|Team |
| 301 | 301 | */ |
| 302 | - public function getTeam (string $gid) { |
|
| 302 | + public function getTeam(string $gid) { |
|
| 303 | 303 | return $this->load($this, Team::class, "teams/{$gid}"); |
| 304 | 304 | } |
| 305 | 305 | |
@@ -309,7 +309,7 @@ discard block |
||
| 309 | 309 | * @param string $gid |
| 310 | 310 | * @return null|User |
| 311 | 311 | */ |
| 312 | - public function getUser (string $gid) { |
|
| 312 | + public function getUser(string $gid) { |
|
| 313 | 313 | return $this->load($this, User::class, "users/{$gid}"); |
| 314 | 314 | } |
| 315 | 315 | |
@@ -321,7 +321,7 @@ discard block |
||
| 321 | 321 | * @param array $data |
| 322 | 322 | * @return Event |
| 323 | 323 | */ |
| 324 | - public function getWebhookEvent (array $data) { |
|
| 324 | + public function getWebhookEvent(array $data) { |
|
| 325 | 325 | return $this->factory($this, Event::class, $data); |
| 326 | 326 | } |
| 327 | 327 | |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | * @param string $gid |
| 332 | 332 | * @return null|Workspace |
| 333 | 333 | */ |
| 334 | - public function getWorkspace (string $gid) { |
|
| 334 | + public function getWorkspace(string $gid) { |
|
| 335 | 335 | return $this->load($this, Workspace::class, "workspaces/{$gid}"); |
| 336 | 336 | } |
| 337 | 337 | |
@@ -344,7 +344,7 @@ discard block |
||
| 344 | 344 | * @param array $query |
| 345 | 345 | * @return null|mixed|AbstractEntity |
| 346 | 346 | */ |
| 347 | - public function load ($caller, string $class, string $path, array $query = []) { |
|
| 347 | + public function load($caller, string $class, string $path, array $query = []) { |
|
| 348 | 348 | $key = rtrim($path . '?' . http_build_query($query), '?'); |
| 349 | 349 | $query['opt_expand'] = 'this'; |
| 350 | 350 | return $this->pool->get($key, $caller, function($caller) use ($class, $path, $query) { |
@@ -364,7 +364,7 @@ discard block |
||
| 364 | 364 | * @param array $query |
| 365 | 365 | * @return array|AbstractEntity[] |
| 366 | 366 | */ |
| 367 | - public function loadAll ($caller, string $class, string $path, array $query = []) { |
|
| 367 | + public function loadAll($caller, string $class, string $path, array $query = []) { |
|
| 368 | 368 | return iterator_to_array($this->loadEach(...func_get_args())); |
| 369 | 369 | } |
| 370 | 370 | |
@@ -379,7 +379,7 @@ discard block |
||
| 379 | 379 | * @param array $query `limit` can exceed `100` here. |
| 380 | 380 | * @return Generator|AbstractEntity[] |
| 381 | 381 | */ |
| 382 | - public function loadEach ($caller, string $class, string $path, array $query = []) { |
|
| 382 | + public function loadEach($caller, string $class, string $path, array $query = []) { |
|
| 383 | 383 | $query['opt_expand'] = 'this'; |
| 384 | 384 | $remain = $query['limit'] ?? PHP_INT_MAX; |
| 385 | 385 | do { |
@@ -403,13 +403,13 @@ discard block |
||
| 403 | 403 | * @param array $options |
| 404 | 404 | * @return null|array |
| 405 | 405 | */ |
| 406 | - public function post (string $path, array $data = [], array $options = []) { |
|
| 406 | + public function post(string $path, array $data = [], array $options = []) { |
|
| 407 | 407 | return $this->call('POST', $path, [ |
| 408 | 408 | CURLOPT_HTTPHEADER => ['Content-Type: application/json'], |
| 409 | 409 | CURLOPT_POSTFIELDS => json_encode([ |
| 410 | 410 | 'options' => $options, |
| 411 | 411 | 'data' => $data |
| 412 | - ], JSON_PRETTY_PRINT | JSON_THROW_ON_ERROR) |
|
| 412 | + ], JSON_PRETTY_PRINT|JSON_THROW_ON_ERROR) |
|
| 413 | 413 | ])['data'] ?? null; |
| 414 | 414 | } |
| 415 | 415 | |
@@ -421,20 +421,20 @@ discard block |
||
| 421 | 421 | * @param array $options |
| 422 | 422 | * @return null|array |
| 423 | 423 | */ |
| 424 | - public function put (string $path, array $data = [], array $options = []) { |
|
| 424 | + public function put(string $path, array $data = [], array $options = []) { |
|
| 425 | 425 | return $this->call('PUT', $path, [ |
| 426 | 426 | CURLOPT_HTTPHEADER => ['Content-Type: application/json'], |
| 427 | 427 | CURLOPT_POSTFIELDS => json_encode([ |
| 428 | 428 | 'options' => $options, |
| 429 | 429 | 'data' => $data |
| 430 | - ], JSON_PRETTY_PRINT | JSON_THROW_ON_ERROR) |
|
| 430 | + ], JSON_PRETTY_PRINT|JSON_THROW_ON_ERROR) |
|
| 431 | 431 | ])['data'] ?? null; |
| 432 | 432 | } |
| 433 | 433 | |
| 434 | 434 | /** |
| 435 | 435 | * @param LoggerInterface $log |
| 436 | 436 | */ |
| 437 | - public function setLog (LoggerInterface $log) { |
|
| 437 | + public function setLog(LoggerInterface $log) { |
|
| 438 | 438 | $this->log = $log; |
| 439 | 439 | } |
| 440 | 440 | } |
| 441 | 441 | \ No newline at end of file |