@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | */ |
21 | 21 | protected $curlInfo; |
22 | 22 | |
23 | - public function __construct (int $code, string $message, array $curlInfo) { |
|
23 | + public function __construct(int $code, string $message, array $curlInfo) { |
|
24 | 24 | parent::__construct($message, $code); |
25 | 25 | $this->curlInfo = $curlInfo; |
26 | 26 | } |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | /** |
29 | 29 | * @return array |
30 | 30 | */ |
31 | - public function getCurlInfo (): array { |
|
31 | + public function getCurlInfo(): array { |
|
32 | 32 | return $this->curlInfo; |
33 | 33 | } |
34 | 34 | } |
35 | 35 | \ No newline at end of file |
@@ -58,8 +58,7 @@ discard block |
||
58 | 58 | $this->_log("CACHE DELINK {$key}"); |
59 | 59 | unlink($ref); |
60 | 60 | unlink($path); |
61 | - } |
|
62 | - elseif (is_file($path)) { |
|
61 | + } elseif (is_file($path)) { |
|
63 | 62 | $this->_log("CACHE DELETE {$key}"); |
64 | 63 | unlink($path); |
65 | 64 | } |
@@ -117,8 +116,7 @@ discard block |
||
117 | 116 | ["CACHE SET {$key}", "CACHE BURN {$key}"][$value instanceof ImmutableInterface], |
118 | 117 | "CACHE UPDATE {$key}" |
119 | 118 | ][is_file($path)]); |
120 | - } |
|
121 | - else { |
|
119 | + } else { |
|
122 | 120 | $this->_log([ |
123 | 121 | "CACHE LINK {$key} => {$value}", |
124 | 122 | "CACHE RENEW LINK {$key} => {$value}" |
@@ -29,30 +29,30 @@ discard block |
||
29 | 29 | /** |
30 | 30 | * @param string $dir |
31 | 31 | */ |
32 | - public function __construct (string $dir) { |
|
32 | + public function __construct(string $dir) { |
|
33 | 33 | $this->dir = $dir; |
34 | 34 | $this->log = new NullLogger(); |
35 | 35 | } |
36 | 36 | |
37 | - private function _log (string $msg): void { |
|
37 | + private function _log(string $msg): void { |
|
38 | 38 | $this->log->log(LOG_DEBUG, $msg); |
39 | 39 | } |
40 | 40 | |
41 | - private function _path ($key): string { |
|
41 | + private function _path($key): string { |
|
42 | 42 | $path = "{$this->dir}/{$key}~"; |
43 | 43 | clearstatcache(true, $path); |
44 | 44 | return $path; |
45 | 45 | } |
46 | 46 | |
47 | - private function _ref ($key): string { |
|
47 | + private function _ref($key): string { |
|
48 | 48 | return "{$this->dir}/{$key}.ref"; |
49 | 49 | } |
50 | 50 | |
51 | - public function clear () { |
|
51 | + public function clear() { |
|
52 | 52 | // unused. just delete the dir. |
53 | 53 | } |
54 | 54 | |
55 | - public function delete ($key) { |
|
55 | + public function delete($key) { |
|
56 | 56 | $path = $this->_path($key); |
57 | 57 | if (is_link($ref = $this->_ref($key))) { |
58 | 58 | $this->_log("CACHE DELINK {$key}"); |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | } |
66 | 66 | } |
67 | 67 | |
68 | - public function deleteMultiple ($keys) { |
|
68 | + public function deleteMultiple($keys) { |
|
69 | 69 | // unused |
70 | 70 | } |
71 | 71 | |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | * @param mixed $default Unused. |
75 | 75 | * @return null|string|object |
76 | 76 | */ |
77 | - public function get ($key, $default = null) { |
|
77 | + public function get($key, $default = null) { |
|
78 | 78 | $path = $this->_path($key); |
79 | 79 | if (!is_file($path)) { |
80 | 80 | $this->_log("CACHE MISS {$key}"); |
@@ -93,11 +93,11 @@ discard block |
||
93 | 93 | return $data; |
94 | 94 | } |
95 | 95 | |
96 | - public function getMultiple ($keys, $default = null) { |
|
96 | + public function getMultiple($keys, $default = null) { |
|
97 | 97 | // unused |
98 | 98 | } |
99 | 99 | |
100 | - public function has ($key): bool { |
|
100 | + public function has($key): bool { |
|
101 | 101 | return is_file($this->_path($key)); |
102 | 102 | } |
103 | 103 | |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | * @param int $ttl |
108 | 108 | * @return void |
109 | 109 | */ |
110 | - public function set ($key, $value, $ttl = null): void { |
|
110 | + public function set($key, $value, $ttl = null): void { |
|
111 | 111 | $path = $this->_path($key); |
112 | 112 | if (!is_dir(dirname($path))) { |
113 | 113 | mkdir(dirname($path), 0770, true); |
@@ -136,12 +136,12 @@ discard block |
||
136 | 136 | * @param LoggerInterface $log |
137 | 137 | * @return $this |
138 | 138 | */ |
139 | - public function setLog (LoggerInterface $log) { |
|
139 | + public function setLog(LoggerInterface $log) { |
|
140 | 140 | $this->log = $log; |
141 | 141 | return $this; |
142 | 142 | } |
143 | 143 | |
144 | - public function setMultiple ($values, $ttl = null) { |
|
144 | + public function setMultiple($values, $ttl = null) { |
|
145 | 145 | // unused |
146 | 146 | } |
147 | 147 | } |
148 | 148 | \ No newline at end of file |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | /** |
30 | 30 | * @param AbstractEntity $entity |
31 | 31 | */ |
32 | - protected function _add (AbstractEntity $entity): void { |
|
32 | + protected function _add(AbstractEntity $entity): void { |
|
33 | 33 | $gid = $entity->getGid(); |
34 | 34 | $this->entities[$gid] = $entity; |
35 | 35 | $this->gids[$gid] = $gid; |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | * @param AbstractEntity $entity |
40 | 40 | * @param string[] $keys |
41 | 41 | */ |
42 | - protected function _addKeys (AbstractEntity $entity, ...$keys): void { |
|
42 | + protected function _addKeys(AbstractEntity $entity, ...$keys): void { |
|
43 | 43 | $this->gids += array_fill_keys($keys, $entity->getGid()); |
44 | 44 | } |
45 | 45 | |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * @param Api|Data $caller For hydration if needed. |
49 | 49 | * @return null|AbstractEntity |
50 | 50 | */ |
51 | - protected function _get (string $key, $caller) { |
|
51 | + protected function _get(string $key, $caller) { |
|
52 | 52 | if (isset($this->gids[$key])) { |
53 | 53 | return $this->entities[$this->gids[$key]]; |
54 | 54 | } |
@@ -62,14 +62,14 @@ discard block |
||
62 | 62 | * @param string $key |
63 | 63 | * @return bool |
64 | 64 | */ |
65 | - protected function _has (string $key): bool { |
|
65 | + protected function _has(string $key): bool { |
|
66 | 66 | return isset($this->gids[$key]); |
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
70 | 70 | * @param AbstractEntity $entity |
71 | 71 | */ |
72 | - final public function add (AbstractEntity $entity): void { |
|
72 | + final public function add(AbstractEntity $entity): void { |
|
73 | 73 | if (!$entity->isDiff()) { |
74 | 74 | $this->_add($entity); |
75 | 75 | $this->_addKeys($entity, ...$entity->getPoolKeys()); |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | * @param Closure $factory `fn( Api|Data $caller ): null|AbstractEntity` |
83 | 83 | * @return null|mixed|AbstractEntity |
84 | 84 | */ |
85 | - final public function get (string $key, $caller, Closure $factory) { |
|
85 | + final public function get(string $key, $caller, Closure $factory) { |
|
86 | 86 | /** @var AbstractEntity $entity */ |
87 | 87 | if (!$entity = $this->_get($key, $caller) and $entity = $factory($caller)) { |
88 | 88 | $gid = $entity->getGid(); |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | /** |
104 | 104 | * @param string[] $keys |
105 | 105 | */ |
106 | - public function remove (array $keys): void { |
|
106 | + public function remove(array $keys): void { |
|
107 | 107 | foreach ($keys as $key) { |
108 | 108 | unset($this->entities[$key]); |
109 | 109 | unset($this->gids[$key]); |
@@ -60,8 +60,7 @@ discard block |
||
60 | 60 | public function __construct ($caller, array $data = []) { |
61 | 61 | if ($caller instanceof self) { |
62 | 62 | $this->api = $caller->api; |
63 | - } |
|
64 | - else { |
|
63 | + } else { |
|
65 | 64 | $this->api = $caller; |
66 | 65 | } |
67 | 66 | $this->_setData($data); |
@@ -263,8 +262,7 @@ discard block |
||
263 | 262 | |
264 | 263 | if ($isList) { |
265 | 264 | $this->data[$field] = array_map($hydrate, $value); |
266 | - } |
|
267 | - else { |
|
265 | + } else { |
|
268 | 266 | $this->data[$field] = $hydrate($value); |
269 | 267 | } |
270 | 268 | } |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | * @param Api|Data $caller |
58 | 58 | * @param array $data |
59 | 59 | */ |
60 | - public function __construct ($caller, array $data = []) { |
|
60 | + public function __construct($caller, array $data = []) { |
|
61 | 61 | if ($caller instanceof self) { |
62 | 62 | $this->api = $caller->api; |
63 | 63 | } |
@@ -78,9 +78,9 @@ discard block |
||
78 | 78 | * @param array $args |
79 | 79 | * @return mixed |
80 | 80 | */ |
81 | - public function __call (string $method, array $args) { |
|
81 | + public function __call(string $method, array $args) { |
|
82 | 82 | static $magic = []; |
83 | - if (!$call =& $magic[$method]) { |
|
83 | + if (!$call = & $magic[$method]) { |
|
84 | 84 | preg_match('/^(get|has|is|select|set)(.+)$/', $method, $call); |
85 | 85 | $call[1] = '_' . $call[1]; |
86 | 86 | $call[2] = preg_replace_callback('/[A-Z]/', function(array $match) { |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | /** |
94 | 94 | * @return array |
95 | 95 | */ |
96 | - public function __debugInfo (): array { |
|
96 | + public function __debugInfo(): array { |
|
97 | 97 | return $this->data; |
98 | 98 | } |
99 | 99 | |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | * @return null|Data|mixed |
103 | 103 | * @internal `array_column()` |
104 | 104 | */ |
105 | - final public function __get ($field) { |
|
105 | + final public function __get($field) { |
|
106 | 106 | return $this->_get($field); |
107 | 107 | } |
108 | 108 | |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | * @return bool |
112 | 112 | * @internal `array_column()` |
113 | 113 | */ |
114 | - final public function __isset ($field) { |
|
114 | + final public function __isset($field) { |
|
115 | 115 | return true; |
116 | 116 | } |
117 | 117 | |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | * @param string $field |
124 | 124 | * @return mixed |
125 | 125 | */ |
126 | - protected function _get (string $field) { |
|
126 | + protected function _get(string $field) { |
|
127 | 127 | return $this->data[$field] ?? null; |
128 | 128 | } |
129 | 129 | |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | * @param string $field |
139 | 139 | * @return bool |
140 | 140 | */ |
141 | - protected function _has (string $field): bool { |
|
141 | + protected function _has(string $field): bool { |
|
142 | 142 | $value = $this->_get($field); |
143 | 143 | if (isset($value)) { |
144 | 144 | if (is_countable($value)) { |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | * @param string $field |
162 | 162 | * @return bool |
163 | 163 | */ |
164 | - protected function _is (string $field): bool { |
|
164 | + protected function _is(string $field): bool { |
|
165 | 165 | return (bool)$this->_get($field); |
166 | 166 | } |
167 | 167 | |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | * @param callable $filter `fn( Data $object ): bool` |
177 | 177 | * @return array |
178 | 178 | */ |
179 | - protected function _select ($subject, callable $filter) { |
|
179 | + protected function _select($subject, callable $filter) { |
|
180 | 180 | if (is_string($subject)) { |
181 | 181 | $subject = $this->_get($subject) ?? []; |
182 | 182 | } |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | * @param mixed $value |
199 | 199 | * @return $this |
200 | 200 | */ |
201 | - protected function _set (string $field, $value) { |
|
201 | + protected function _set(string $field, $value) { |
|
202 | 202 | $this->data[$field] = $value; |
203 | 203 | $this->diff[$field] = true; |
204 | 204 | return $this; |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | * |
210 | 210 | * @param array $data |
211 | 211 | */ |
212 | - protected function _setData (array $data): void { |
|
212 | + protected function _setData(array $data): void { |
|
213 | 213 | $this->data = $this->diff = []; |
214 | 214 | foreach ($data as $field => $value) { |
215 | 215 | $this->_setMapped($field, $value); |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | * @param string $field |
223 | 223 | * @param mixed $value |
224 | 224 | */ |
225 | - protected function _setMapped (string $field, $value): void { |
|
225 | + protected function _setMapped(string $field, $value): void { |
|
226 | 226 | unset($this->diff[$field]); |
227 | 227 | |
228 | 228 | // use value as-is? |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | * |
275 | 275 | * @return array |
276 | 276 | */ |
277 | - public function getDiff (): array { |
|
277 | + public function getDiff(): array { |
|
278 | 278 | $convert = function($each) use (&$convert) { |
279 | 279 | // convert existing entities to gids |
280 | 280 | if ($each instanceof AbstractEntity and $each->hasGid()) { |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | * @param string $field |
301 | 301 | * @return bool |
302 | 302 | */ |
303 | - final public function isDiff (string $field = null): bool { |
|
303 | + final public function isDiff(string $field = null): bool { |
|
304 | 304 | if ($field) { |
305 | 305 | return isset($this->diff[$field]); |
306 | 306 | } |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | * @see toArray() |
312 | 312 | * @return array |
313 | 313 | */ |
314 | - public function jsonSerialize (): array { |
|
314 | + public function jsonSerialize(): array { |
|
315 | 315 | $data = $this->toArray(); |
316 | 316 | ksort($data); |
317 | 317 | return $data; |
@@ -322,8 +322,8 @@ discard block |
||
322 | 322 | * |
323 | 323 | * @return string |
324 | 324 | */ |
325 | - public function serialize (): string { |
|
326 | - return json_encode($this, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); |
|
325 | + public function serialize(): string { |
|
326 | + return json_encode($this, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE); |
|
327 | 327 | } |
328 | 328 | |
329 | 329 | /** |
@@ -331,7 +331,7 @@ discard block |
||
331 | 331 | * |
332 | 332 | * @return array |
333 | 333 | */ |
334 | - public function toArray (): array { |
|
334 | + public function toArray(): array { |
|
335 | 335 | if (!$this->api) { |
336 | 336 | return $this->data; |
337 | 337 | } |
@@ -356,7 +356,7 @@ discard block |
||
356 | 356 | /** |
357 | 357 | * @param $serialized |
358 | 358 | */ |
359 | - public function unserialize ($serialized): void { |
|
359 | + public function unserialize($serialized): void { |
|
360 | 360 | $this->data = json_decode($serialized, true); |
361 | 361 | } |
362 | 362 | } |
363 | 363 | \ No newline at end of file |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | 'custom_field' => CustomField::class, |
24 | 24 | ]; |
25 | 25 | |
26 | - protected function _setData (array $data): void { |
|
26 | + protected function _setData(array $data): void { |
|
27 | 27 | // these are the only fields that matter. |
28 | 28 | parent::_setData([ |
29 | 29 | 'custom_field' => $data['custom_field'], |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | ]); |
32 | 32 | } |
33 | 33 | |
34 | - final public function getResourceType (): string { |
|
34 | + final public function getResourceType(): string { |
|
35 | 35 | return self::TYPE; |
36 | 36 | } |
37 | 37 | } |
38 | 38 | \ No newline at end of file |
@@ -44,46 +44,46 @@ discard block |
||
44 | 44 | 'target' => Task::class |
45 | 45 | ]; |
46 | 46 | |
47 | - final public function __toString (): string { |
|
47 | + final public function __toString(): string { |
|
48 | 48 | return "stories/{$this->getGid()}"; |
49 | 49 | } |
50 | 50 | |
51 | - final protected function _getDir (): string { |
|
51 | + final protected function _getDir(): string { |
|
52 | 52 | return "{$this->getTarget()}/stories"; |
53 | 53 | } |
54 | 54 | |
55 | - protected function _setData (array $data): void { |
|
55 | + protected function _setData(array $data): void { |
|
56 | 56 | // hearts were deprecated for likes |
57 | 57 | unset($data['hearted'], $data['hearts'], $data['num_hearts']); |
58 | 58 | |
59 | 59 | parent::_setData($data); |
60 | 60 | } |
61 | 61 | |
62 | - final public function isAssignment (): bool { |
|
62 | + final public function isAssignment(): bool { |
|
63 | 63 | return $this->getResourceSubtype() === self::TYPE_ASSIGNED; |
64 | 64 | } |
65 | 65 | |
66 | - final public function isComment (): bool { |
|
66 | + final public function isComment(): bool { |
|
67 | 67 | return $this->getResourceSubtype() === self::TYPE_COMMENT_ADDED; |
68 | 68 | } |
69 | 69 | |
70 | - final public function isDueDate (): bool { |
|
70 | + final public function isDueDate(): bool { |
|
71 | 71 | return $this->getResourceSubtype() === self::TYPE_DUE_DATE_CHANGED; |
72 | 72 | } |
73 | 73 | |
74 | - public function isEdited (): bool { |
|
74 | + public function isEdited(): bool { |
|
75 | 75 | return $this->_is('is_edited'); |
76 | 76 | } |
77 | 77 | |
78 | - public function isFromApi (): bool { |
|
78 | + public function isFromApi(): bool { |
|
79 | 79 | return $this->getSource() === 'api'; |
80 | 80 | } |
81 | 81 | |
82 | - public function isFromWeb (): bool { |
|
82 | + public function isFromWeb(): bool { |
|
83 | 83 | return $this->getSource() === 'web'; |
84 | 84 | } |
85 | 85 | |
86 | - public function isPinned (): bool { |
|
86 | + public function isPinned(): bool { |
|
87 | 87 | return $this->_is('is_pinned'); |
88 | 88 | } |
89 | 89 | |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | * @param bool $pinned |
92 | 92 | * @return $this |
93 | 93 | */ |
94 | - public function setPinned (bool $pinned) { |
|
94 | + public function setPinned(bool $pinned) { |
|
95 | 95 | return $this->_set('is_pinned', $pinned); |
96 | 96 | } |
97 | 97 |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | 'workspaces' => [Workspace::class] |
30 | 30 | ]; |
31 | 31 | |
32 | - final public function __toString (): string { |
|
32 | + final public function __toString(): string { |
|
33 | 33 | return "users/{$this->getGid()}"; |
34 | 34 | } |
35 | 35 | |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | * @param Workspace $workspace |
38 | 38 | * @return $this |
39 | 39 | */ |
40 | - public function addToWorkspace (Workspace $workspace) { |
|
40 | + public function addToWorkspace(Workspace $workspace) { |
|
41 | 41 | return $this->_addWithPost("{$workspace}/addUser", [ |
42 | 42 | 'user' => $this->getGid() |
43 | 43 | ], 'workspaces', [$workspace]); |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | * |
50 | 50 | * @return Workspace |
51 | 51 | */ |
52 | - public function getDefaultWorkspace () { |
|
52 | + public function getDefaultWorkspace() { |
|
53 | 53 | return $this->getWorkspaces()[0]; |
54 | 54 | } |
55 | 55 | |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | * @param null|Workspace $workspace Falls back to the default workspace. |
58 | 58 | * @return Portfolio[] |
59 | 59 | */ |
60 | - public function getFavoritePortfolios (Workspace $workspace = null) { |
|
60 | + public function getFavoritePortfolios(Workspace $workspace = null) { |
|
61 | 61 | return $this->getFavorites(Portfolio::class, Portfolio::TYPE, $workspace); |
62 | 62 | } |
63 | 63 | |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | * @param null|Workspace $workspace Falls back to the default workspace. |
66 | 66 | * @return Project[] |
67 | 67 | */ |
68 | - public function getFavoriteProjects (Workspace $workspace = null) { |
|
68 | + public function getFavoriteProjects(Workspace $workspace = null) { |
|
69 | 69 | return $this->getFavorites(Project::class, Project::TYPE, $workspace); |
70 | 70 | } |
71 | 71 | |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | * @param null|Workspace $workspace Falls back to the default workspace. |
74 | 74 | * @return Tag[] |
75 | 75 | */ |
76 | - public function getFavoriteTags (Workspace $workspace = null) { |
|
76 | + public function getFavoriteTags(Workspace $workspace = null) { |
|
77 | 77 | return $this->getFavorites(Tag::class, Tag::TYPE, $workspace); |
78 | 78 | } |
79 | 79 | |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | * @param null|Workspace $workspace Falls back to the default workspace. |
82 | 82 | * @return Team[] |
83 | 83 | */ |
84 | - public function getFavoriteTeams (Workspace $workspace = null) { |
|
84 | + public function getFavoriteTeams(Workspace $workspace = null) { |
|
85 | 85 | return $this->getFavorites(Team::class, Team::TYPE, $workspace); |
86 | 86 | } |
87 | 87 | |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | * @param null|Workspace $workspace Falls back to the default workspace. |
90 | 90 | * @return User[] |
91 | 91 | */ |
92 | - public function getFavoriteUsers (Workspace $workspace = null) { |
|
92 | + public function getFavoriteUsers(Workspace $workspace = null) { |
|
93 | 93 | return $this->getFavorites(self::class, self::TYPE, $workspace); |
94 | 94 | } |
95 | 95 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | * @param null|Workspace $workspace Falls back to the default workspace. |
100 | 100 | * @return array |
101 | 101 | */ |
102 | - protected function getFavorites (string $class, string $resourceType, Workspace $workspace = null) { |
|
102 | + protected function getFavorites(string $class, string $resourceType, Workspace $workspace = null) { |
|
103 | 103 | return $this->api->loadAll($this, $class, "{$this}/favorites", [ |
104 | 104 | 'resource_type' => $resourceType, |
105 | 105 | 'workspace' => ($workspace ?? $this->api->getDefaultWorkspace())->getGid() |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | /** |
110 | 110 | * @return string[] |
111 | 111 | */ |
112 | - public function getPoolKeys () { |
|
112 | + public function getPoolKeys() { |
|
113 | 113 | $keys = parent::getPoolKeys(); |
114 | 114 | |
115 | 115 | // include email as a key if it's loaded |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | * @param null|Workspace $workspace |
125 | 125 | * @return Portfolio[] |
126 | 126 | */ |
127 | - public function getPortfolios (Workspace $workspace = null) { |
|
127 | + public function getPortfolios(Workspace $workspace = null) { |
|
128 | 128 | return $this->api->loadAll($this, Portfolio::class, "portfolios", [ |
129 | 129 | 'workspace' => ($workspace ?? $this->api->getDefaultWorkspace())->getGid(), |
130 | 130 | 'owner' => $this->getGid() |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | * @param null|Workspace $workspace Falls back to the default workspace. |
136 | 136 | * @return TaskList |
137 | 137 | */ |
138 | - public function getTaskList (Workspace $workspace = null) { |
|
138 | + public function getTaskList(Workspace $workspace = null) { |
|
139 | 139 | return $this->api->load($this, TaskList::class, "{$this}/user_task_list", [ |
140 | 140 | 'workspace' => ($workspace ?? $this->api->getDefaultWorkspace())->getGid() |
141 | 141 | ]); |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | * @param string[] $filter `workspace` falls back to the default. |
148 | 148 | * @return Task[] |
149 | 149 | */ |
150 | - public function getTasks (array $filter = []) { |
|
150 | + public function getTasks(array $filter = []) { |
|
151 | 151 | $filter['assignee'] = $this->getGid(); |
152 | 152 | $filter += ['workspace' => $this->api->getDefaultWorkspace()->getGid()]; |
153 | 153 | return $this->api->loadAll($this, Task::class, 'tasks', $filter); |
@@ -161,13 +161,13 @@ discard block |
||
161 | 161 | * @param null|Workspace $organization Falls back to the default workspace. |
162 | 162 | * @return Team[] |
163 | 163 | */ |
164 | - public function getTeams (Workspace $organization = null) { |
|
164 | + public function getTeams(Workspace $organization = null) { |
|
165 | 165 | return $this->api->loadAll($this, Team::class, "{$this}/teams", [ |
166 | 166 | 'organization' => ($organization ?? $this->getDefaultWorkspace())->getGid() |
167 | 167 | ]); |
168 | 168 | } |
169 | 169 | |
170 | - public function getUrl (): string { |
|
170 | + public function getUrl(): string { |
|
171 | 171 | return "https://app.asana.com/0/{$this->getGid()}/list"; |
172 | 172 | } |
173 | 173 | |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | * @param Workspace $workspace |
176 | 176 | * @return $this |
177 | 177 | */ |
178 | - public function removeFromWorkspace (Workspace $workspace) { |
|
178 | + public function removeFromWorkspace(Workspace $workspace) { |
|
179 | 179 | return $this->_removeWithPost("{$workspace}/removeUser", [ |
180 | 180 | 'user' => $this->getGid() |
181 | 181 | ], 'workspaces', [$workspace]); |
@@ -78,15 +78,15 @@ discard block |
||
78 | 78 | */ |
79 | 79 | private $defaultSection; |
80 | 80 | |
81 | - final public function __toString (): string { |
|
81 | + final public function __toString(): string { |
|
82 | 82 | return "projects/{$this->getGid()}"; |
83 | 83 | } |
84 | 84 | |
85 | - final protected function _getDir (): string { |
|
85 | + final protected function _getDir(): string { |
|
86 | 86 | return 'projects'; |
87 | 87 | } |
88 | 88 | |
89 | - protected function _setData (array $data): void { |
|
89 | + protected function _setData(array $data): void { |
|
90 | 90 | // this is always empty. fields are in the settings, values are in tasks. |
91 | 91 | unset($data['custom_fields']); |
92 | 92 | |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * @param User $user |
102 | 102 | * @return $this |
103 | 103 | */ |
104 | - public function addMember (User $user) { |
|
104 | + public function addMember(User $user) { |
|
105 | 105 | return $this->addMembers([$user]); |
106 | 106 | } |
107 | 107 | |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | * @param User[] $users |
111 | 111 | * @return $this |
112 | 112 | */ |
113 | - public function addMembers (array $users) { |
|
113 | + public function addMembers(array $users) { |
|
114 | 114 | return $this->_addWithPost("{$this}/addMembers", [ |
115 | 115 | 'members' => array_column($users, 'gid') |
116 | 116 | ], 'members', $users); |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | * @param string $target |
122 | 122 | * @return ProjectWebhook |
123 | 123 | */ |
124 | - public function addWebhook (string $target) { |
|
124 | + public function addWebhook(string $target) { |
|
125 | 125 | /** @var ProjectWebhook $webhook */ |
126 | 126 | $webhook = $this->api->factory($this, ProjectWebhook::class); |
127 | 127 | return $webhook->create($this, $target); |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | * @param array $schedule |
147 | 147 | * @return Job |
148 | 148 | */ |
149 | - public function duplicate (string $name, array $include, Team $team = null, array $schedule = []) { |
|
149 | + public function duplicate(string $name, array $include, Team $team = null, array $schedule = []) { |
|
150 | 150 | $data = ['name' => $name]; |
151 | 151 | if ($team) { |
152 | 152 | $data['team'] = $team->getGid(); |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | * @depends after-create |
167 | 167 | * @return Section |
168 | 168 | */ |
169 | - public function getDefaultSection () { |
|
169 | + public function getDefaultSection() { |
|
170 | 170 | return $this->defaultSection ?? $this->defaultSection = $this->getSections(1)[0]; |
171 | 171 | } |
172 | 172 | |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | * @param null|string $token |
180 | 180 | * @return Event[] |
181 | 181 | */ |
182 | - public function getEvents (&$token) { |
|
182 | + public function getEvents(&$token) { |
|
183 | 183 | return $this->api->sync($this->getGid(), $token); |
184 | 184 | } |
185 | 185 | |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | * @param int $limit |
192 | 192 | * @return Traversable|Section[] |
193 | 193 | */ |
194 | - public function getIterator (int $limit = 0) { |
|
194 | + public function getIterator(int $limit = 0) { |
|
195 | 195 | return $this->api->loadEach($this, Section::class, "{$this}/sections", ['limit' => $limit]); |
196 | 196 | } |
197 | 197 | |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | * @param int $limit |
201 | 201 | * @return Section[] |
202 | 202 | */ |
203 | - public function getSections (int $limit = 0) { |
|
203 | + public function getSections(int $limit = 0) { |
|
204 | 204 | return iterator_to_array($this->getIterator($limit)); |
205 | 205 | } |
206 | 206 | |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | * @depends after-create |
209 | 209 | * @return Status[] |
210 | 210 | */ |
211 | - public function getStatuses () { |
|
211 | + public function getStatuses() { |
|
212 | 212 | return $this->api->loadAll($this, Status::class, "{$this}/project_statuses"); |
213 | 213 | } |
214 | 214 | |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | * @depends after-create |
217 | 217 | * @return TaskCounts |
218 | 218 | */ |
219 | - public function getTaskCounts () { |
|
219 | + public function getTaskCounts() { |
|
220 | 220 | /** @var array $remote */ |
221 | 221 | $remote = $this->api->get("{$this}/task_counts", [], TaskCounts::OPT); |
222 | 222 | return $this->api->factory($this, TaskCounts::class, $remote); |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | * @param array $filter |
230 | 230 | * @return Task[] |
231 | 231 | */ |
232 | - public function getTasks (array $filter = []) { |
|
232 | + public function getTasks(array $filter = []) { |
|
233 | 233 | $filter['project'] = $this->getGid(); |
234 | 234 | return $this->api->loadAll($this, Task::class, "tasks", $filter); |
235 | 235 | } |
@@ -238,25 +238,25 @@ discard block |
||
238 | 238 | * @depends after-create |
239 | 239 | * @return string |
240 | 240 | */ |
241 | - public function getUrl (): string { |
|
241 | + public function getUrl(): string { |
|
242 | 242 | return "https://app.asana.com/0/{$this->getGid()}"; |
243 | 243 | } |
244 | 244 | |
245 | 245 | /** |
246 | 246 | * @return ProjectWebhook[] |
247 | 247 | */ |
248 | - public function getWebhooks () { |
|
248 | + public function getWebhooks() { |
|
249 | 249 | return $this->api->loadAll($this, ProjectWebhook::class, 'webhooks', [ |
250 | 250 | 'workspace' => $this->getWorkspace()->getGid(), |
251 | 251 | 'resource' => $this->getGid() |
252 | 252 | ]); |
253 | 253 | } |
254 | 254 | |
255 | - public function isBoard (): bool { |
|
255 | + public function isBoard(): bool { |
|
256 | 256 | return $this->getLayout() === self::LAYOUT_BOARD; |
257 | 257 | } |
258 | 258 | |
259 | - public function isList (): bool { |
|
259 | + public function isList(): bool { |
|
260 | 260 | return $this->getLayout() === self::LAYOUT_LIST; |
261 | 261 | } |
262 | 262 | |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | * @depends after-create |
265 | 265 | * @return Section |
266 | 266 | */ |
267 | - public function newSection () { |
|
267 | + public function newSection() { |
|
268 | 268 | return $this->api->factory($this, Section::class, ['project' => $this]); |
269 | 269 | } |
270 | 270 | |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | * @depends after-create |
273 | 273 | * @return Status |
274 | 274 | */ |
275 | - public function newStatus () { |
|
275 | + public function newStatus() { |
|
276 | 276 | return $this->api->factory($this, Status::class); |
277 | 277 | } |
278 | 278 | |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | * @depends after-create |
283 | 283 | * @return Task |
284 | 284 | */ |
285 | - public function newTask () { |
|
285 | + public function newTask() { |
|
286 | 286 | return $this->getDefaultSection()->newTask(); |
287 | 287 | } |
288 | 288 | |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | * @param User $user |
292 | 292 | * @return $this |
293 | 293 | */ |
294 | - public function removeMember (User $user) { |
|
294 | + public function removeMember(User $user) { |
|
295 | 295 | return $this->removeMembers([$user]); |
296 | 296 | } |
297 | 297 | |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | * @param User[] $users |
301 | 301 | * @return $this |
302 | 302 | */ |
303 | - public function removeMembers (array $users) { |
|
303 | + public function removeMembers(array $users) { |
|
304 | 304 | return $this->_removeWithPost("{$this}/removeMembers", [ |
305 | 305 | 'members' => array_column($users, 'gid') |
306 | 306 | ], 'members', $users); |
@@ -310,7 +310,7 @@ discard block |
||
310 | 310 | * @param callable $filter `fn( Section $section ): bool` |
311 | 311 | * @return Section[] |
312 | 312 | */ |
313 | - public function selectSections (callable $filter) { |
|
313 | + public function selectSections(callable $filter) { |
|
314 | 314 | return $this->_select($this->getSections(), $filter); |
315 | 315 | } |
316 | 316 | |
@@ -318,7 +318,7 @@ discard block |
||
318 | 318 | * @param callable $filter `fn( Status $status ): bool` |
319 | 319 | * @return Status[] |
320 | 320 | */ |
321 | - public function selectStatuses (callable $filter) { |
|
321 | + public function selectStatuses(callable $filter) { |
|
322 | 322 | return $this->_select($this->getStatuses(), $filter); |
323 | 323 | } |
324 | 324 | |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | * @param array $apiFilter Pre-filter given to the API to reduce network load. |
328 | 328 | * @return Task[] |
329 | 329 | */ |
330 | - public function selectTasks (callable $filter, array $apiFilter = []) { |
|
330 | + public function selectTasks(callable $filter, array $apiFilter = []) { |
|
331 | 331 | return $this->_select($this->getTasks($apiFilter), $filter); |
332 | 332 | } |
333 | 333 | |
@@ -336,7 +336,7 @@ discard block |
||
336 | 336 | * @param null|Team $team |
337 | 337 | * @return $this |
338 | 338 | */ |
339 | - public function setTeam (?Team $team) { |
|
339 | + public function setTeam(?Team $team) { |
|
340 | 340 | if ($team and !$this->hasWorkspace()) { |
341 | 341 | $this->setWorkspace($team->getOrganization()); |
342 | 342 | } |
@@ -48,14 +48,14 @@ |
||
48 | 48 | /** |
49 | 49 | * @return Api |
50 | 50 | */ |
51 | - final public static function getApi () { |
|
51 | + final public static function getApi() { |
|
52 | 52 | return static::getFacadeRoot(); |
53 | 53 | } |
54 | 54 | |
55 | 55 | /** |
56 | 56 | * @return string |
57 | 57 | */ |
58 | - public static function getFacadeAccessor () { |
|
58 | + public static function getFacadeAccessor() { |
|
59 | 59 | return AsanaServiceProvider::NAME; |
60 | 60 | } |
61 | 61 |