@@ -42,11 +42,11 @@ discard block |
||
42 | 42 | */ |
43 | 43 | class Event extends Data { |
44 | 44 | |
45 | - const ACTION_CHANGED = 'changed'; // no parent |
|
46 | - const ACTION_ADDED = 'added'; // relational, no change |
|
47 | - const ACTION_REMOVED = 'removed'; // relational, no change |
|
48 | - const ACTION_DELETED = 'deleted'; // no parent or change |
|
49 | - const ACTION_UNDELETED = 'undeleted'; // no parent or change |
|
45 | + const ACTION_CHANGED = 'changed'; // no parent |
|
46 | + const ACTION_ADDED = 'added'; // relational, no change |
|
47 | + const ACTION_REMOVED = 'removed'; // relational, no change |
|
48 | + const ACTION_DELETED = 'deleted'; // no parent or change |
|
49 | + const ACTION_UNDELETED = 'undeleted'; // no parent or change |
|
50 | 50 | |
51 | 51 | const GRAPH = [ |
52 | 52 | User::TYPE => User::class, |
@@ -71,35 +71,35 @@ discard block |
||
71 | 71 | /** |
72 | 72 | * @return bool |
73 | 73 | */ |
74 | - final public function wasAddition (): bool { |
|
74 | + final public function wasAddition(): bool { |
|
75 | 75 | return $this->getAction() === self::ACTION_ADDED; |
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
79 | 79 | * @return bool |
80 | 80 | */ |
81 | - final public function wasChange (): bool { |
|
81 | + final public function wasChange(): bool { |
|
82 | 82 | return $this->getAction() === self::ACTION_CHANGED; |
83 | 83 | } |
84 | 84 | |
85 | 85 | /** |
86 | 86 | * @return bool |
87 | 87 | */ |
88 | - final public function wasDeletion (): bool { |
|
88 | + final public function wasDeletion(): bool { |
|
89 | 89 | return $this->getAction() === self::ACTION_DELETED; |
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
93 | 93 | * @return bool |
94 | 94 | */ |
95 | - final public function wasRemoval (): bool { |
|
95 | + final public function wasRemoval(): bool { |
|
96 | 96 | return $this->getAction() === self::ACTION_REMOVED; |
97 | 97 | } |
98 | 98 | |
99 | 99 | /** |
100 | 100 | * @return bool |
101 | 101 | */ |
102 | - final public function wasUndeletion (): bool { |
|
102 | + final public function wasUndeletion(): bool { |
|
103 | 103 | return $this->getAction() === self::ACTION_UNDELETED; |
104 | 104 | } |
105 | 105 |
@@ -77,15 +77,15 @@ discard block |
||
77 | 77 | */ |
78 | 78 | private $defaultSection; |
79 | 79 | |
80 | - final public function __toString (): string { |
|
80 | + final public function __toString(): string { |
|
81 | 81 | return "projects/{$this->getGid()}"; |
82 | 82 | } |
83 | 83 | |
84 | - final protected function _getDir (): string { |
|
84 | + final protected function _getDir(): string { |
|
85 | 85 | return 'projects'; |
86 | 86 | } |
87 | 87 | |
88 | - protected function _setData (array $data): void { |
|
88 | + protected function _setData(array $data): void { |
|
89 | 89 | // this is always empty. fields are in the settings, values are in tasks. |
90 | 90 | unset($data['custom_fields']); |
91 | 91 | |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | * @param User $user |
101 | 101 | * @return $this |
102 | 102 | */ |
103 | - public function addMember (User $user) { |
|
103 | + public function addMember(User $user) { |
|
104 | 104 | return $this->addMembers([$user]); |
105 | 105 | } |
106 | 106 | |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | * @param User[] $users |
110 | 110 | * @return $this |
111 | 111 | */ |
112 | - public function addMembers (array $users) { |
|
112 | + public function addMembers(array $users) { |
|
113 | 113 | return $this->_addWithPost("{$this}/addMembers", [ |
114 | 114 | 'members' => array_column($users, 'gid') |
115 | 115 | ], 'members', $users); |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | * @param string $target |
121 | 121 | * @return ProjectWebhook |
122 | 122 | */ |
123 | - public function addWebhook (string $target) { |
|
123 | + public function addWebhook(string $target) { |
|
124 | 124 | /** @var ProjectWebhook $webhook */ |
125 | 125 | $webhook = $this->api->factory($this, ProjectWebhook::class); |
126 | 126 | return $webhook->create($this, $target); |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | * @param array $schedule |
146 | 146 | * @return Job |
147 | 147 | */ |
148 | - public function duplicate (string $name, array $include, Team $team = null, array $schedule = []) { |
|
148 | + public function duplicate(string $name, array $include, Team $team = null, array $schedule = []) { |
|
149 | 149 | $data = ['name' => $name]; |
150 | 150 | if ($team) { |
151 | 151 | $data['team'] = $team->getGid(); |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | * @depends after-create |
165 | 165 | * @return Section |
166 | 166 | */ |
167 | - public function getDefaultSection () { |
|
167 | + public function getDefaultSection() { |
|
168 | 168 | return $this->defaultSection ?? |
169 | 169 | $this->defaultSection = $this->api->loadAll($this, Section::class, "{$this}/sections", ['limit' => 1])[0]; |
170 | 170 | } |
@@ -178,14 +178,14 @@ discard block |
||
178 | 178 | * @param null|string $token |
179 | 179 | * @return Event[] |
180 | 180 | */ |
181 | - public function getEvents (&$token) { |
|
181 | + public function getEvents(&$token) { |
|
182 | 182 | return $this->api->sync($this->getGid(), $token); |
183 | 183 | } |
184 | 184 | |
185 | 185 | /** |
186 | 186 | * @return Traversable|Section[] |
187 | 187 | */ |
188 | - public function getIterator () { |
|
188 | + public function getIterator() { |
|
189 | 189 | return $this->api->loadEach($this, Section::class, "{$this}/sections"); |
190 | 190 | } |
191 | 191 | |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | * @depends after-create |
194 | 194 | * @return Section[] |
195 | 195 | */ |
196 | - public function getSections () { |
|
196 | + public function getSections() { |
|
197 | 197 | return iterator_to_array($this); |
198 | 198 | } |
199 | 199 | |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | * @depends after-create |
202 | 202 | * @return Status[] |
203 | 203 | */ |
204 | - public function getStatuses () { |
|
204 | + public function getStatuses() { |
|
205 | 205 | return $this->api->loadAll($this, Status::class, "{$this}/project_statuses"); |
206 | 206 | } |
207 | 207 | |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | * @param array $filter |
213 | 213 | * @return Task[] |
214 | 214 | */ |
215 | - public function getTasks (array $filter = []) { |
|
215 | + public function getTasks(array $filter = []) { |
|
216 | 216 | $filter['project'] = $this->getGid(); |
217 | 217 | return $this->api->loadAll($this, Task::class, "tasks", $filter); |
218 | 218 | } |
@@ -221,25 +221,25 @@ discard block |
||
221 | 221 | * @depends after-create |
222 | 222 | * @return string |
223 | 223 | */ |
224 | - public function getUrl (): string { |
|
224 | + public function getUrl(): string { |
|
225 | 225 | return "https://app.asana.com/0/{$this->getGid()}"; |
226 | 226 | } |
227 | 227 | |
228 | 228 | /** |
229 | 229 | * @return ProjectWebhook[] |
230 | 230 | */ |
231 | - public function getWebhooks () { |
|
231 | + public function getWebhooks() { |
|
232 | 232 | return $this->api->loadAll($this, ProjectWebhook::class, 'webhooks', [ |
233 | 233 | 'workspace' => $this->getWorkspace()->getGid(), |
234 | 234 | 'resource' => $this->getGid() |
235 | 235 | ]); |
236 | 236 | } |
237 | 237 | |
238 | - public function isBoard (): bool { |
|
238 | + public function isBoard(): bool { |
|
239 | 239 | return $this->getLayout() === self::LAYOUT_BOARD; |
240 | 240 | } |
241 | 241 | |
242 | - public function isList (): bool { |
|
242 | + public function isList(): bool { |
|
243 | 243 | return $this->getLayout() === self::LAYOUT_LIST; |
244 | 244 | } |
245 | 245 | |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | * @depends after-create |
248 | 248 | * @return Section |
249 | 249 | */ |
250 | - public function newSection () { |
|
250 | + public function newSection() { |
|
251 | 251 | return $this->api->factory($this, Section::class, ['project' => $this]); |
252 | 252 | } |
253 | 253 | |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | * @depends after-create |
256 | 256 | * @return Status |
257 | 257 | */ |
258 | - public function newStatus () { |
|
258 | + public function newStatus() { |
|
259 | 259 | return $this->api->factory($this, Status::class); |
260 | 260 | } |
261 | 261 | |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | * @depends after-create |
266 | 266 | * @return Task |
267 | 267 | */ |
268 | - public function newTask () { |
|
268 | + public function newTask() { |
|
269 | 269 | return $this->getDefaultSection()->newTask(); |
270 | 270 | } |
271 | 271 | |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | * @param User $user |
275 | 275 | * @return $this |
276 | 276 | */ |
277 | - public function removeMember (User $user) { |
|
277 | + public function removeMember(User $user) { |
|
278 | 278 | return $this->removeMembers([$user]); |
279 | 279 | } |
280 | 280 | |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | * @param User[] $users |
284 | 284 | * @return $this |
285 | 285 | */ |
286 | - public function removeMembers (array $users) { |
|
286 | + public function removeMembers(array $users) { |
|
287 | 287 | return $this->_removeWithPost("{$this}/removeMembers", [ |
288 | 288 | 'members' => array_column($users, 'gid') |
289 | 289 | ], 'members', $users); |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | * @param callable $filter `fn( Section $section ): bool` |
294 | 294 | * @return Section[] |
295 | 295 | */ |
296 | - public function selectSections (callable $filter) { |
|
296 | + public function selectSections(callable $filter) { |
|
297 | 297 | return $this->_select($this->getSections(), $filter); |
298 | 298 | } |
299 | 299 | |
@@ -301,7 +301,7 @@ discard block |
||
301 | 301 | * @param callable $filter `fn( Status $status ): bool` |
302 | 302 | * @return Status[] |
303 | 303 | */ |
304 | - public function selectStatuses (callable $filter) { |
|
304 | + public function selectStatuses(callable $filter) { |
|
305 | 305 | return $this->_select($this->getStatuses(), $filter); |
306 | 306 | } |
307 | 307 | |
@@ -310,7 +310,7 @@ discard block |
||
310 | 310 | * @param array $apiFilter Pre-filter given to the API to reduce network load. |
311 | 311 | * @return Task[] |
312 | 312 | */ |
313 | - public function selectTasks (callable $filter, array $apiFilter = []) { |
|
313 | + public function selectTasks(callable $filter, array $apiFilter = []) { |
|
314 | 314 | return $this->_select($this->getTasks($apiFilter), $filter); |
315 | 315 | } |
316 | 316 | |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | * @param null|Team $team |
320 | 320 | * @return $this |
321 | 321 | */ |
322 | - public function setTeam (?Team $team) { |
|
322 | + public function setTeam(?Team $team) { |
|
323 | 323 | if ($team and !$this->hasWorkspace()) { |
324 | 324 | $this->setWorkspace($team->getOrganization()); |
325 | 325 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | * @param AbstractEntity $entity |
35 | 35 | * @return bool Success? |
36 | 36 | */ |
37 | - public function add (AbstractEntity $entity): bool { |
|
37 | + public function add(AbstractEntity $entity): bool { |
|
38 | 38 | if (!$entity->isDiff() and $gid = $entity->getGid()) { |
39 | 39 | $this->entities[$gid] = $entity; |
40 | 40 | $this->addKeys($gid, $entity->getCacheKeys()); |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | * @param string $gid |
50 | 50 | * @param string[] $keys |
51 | 51 | */ |
52 | - protected function addKeys (string $gid, array $keys): void { |
|
52 | + protected function addKeys(string $gid, array $keys): void { |
|
53 | 53 | $this->gids += array_fill_keys($keys, $gid); |
54 | 54 | } |
55 | 55 | |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | * @param Closure $factory `fn( Api|Data $caller ): null|AbstractEntity` |
65 | 65 | * @return null|mixed|AbstractEntity |
66 | 66 | */ |
67 | - public function get (string $key, $caller, Closure $factory) { |
|
67 | + public function get(string $key, $caller, Closure $factory) { |
|
68 | 68 | // POOL HIT |
69 | 69 | if ($gid = $this->gids[$key] ?? null) { |
70 | 70 | return $this->entities[$gid]; |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | * |
94 | 94 | * @param string[] $keys |
95 | 95 | */ |
96 | - public function remove (array $keys): void { |
|
96 | + public function remove(array $keys): void { |
|
97 | 97 | foreach ($keys as $key) { |
98 | 98 | unset($this->entities[$key]); |
99 | 99 | unset($this->gids[$key]); |
@@ -36,26 +36,26 @@ discard block |
||
36 | 36 | * @param string $dir |
37 | 37 | * @param bool $gz |
38 | 38 | */ |
39 | - public function __construct (string $dir, $gz = false) { |
|
39 | + public function __construct(string $dir, $gz = false) { |
|
40 | 40 | $this->dir = $dir; |
41 | 41 | $this->gz = $gz; |
42 | 42 | } |
43 | 43 | |
44 | - private function _path ($key): string { |
|
44 | + private function _path($key): string { |
|
45 | 45 | $path = "{$this->dir}/{$key}~"; |
46 | 46 | clearstatcache(true, $path); |
47 | 47 | return $path; |
48 | 48 | } |
49 | 49 | |
50 | - private function _ref ($key): string { |
|
50 | + private function _ref($key): string { |
|
51 | 51 | return "{$this->dir}/{$key}.ref"; |
52 | 52 | } |
53 | 53 | |
54 | - public function clear () { |
|
54 | + public function clear() { |
|
55 | 55 | // unused. just delete the dir. |
56 | 56 | } |
57 | 57 | |
58 | - public function delete ($key) { |
|
58 | + public function delete($key) { |
|
59 | 59 | $path = $this->_path($key); |
60 | 60 | if (is_link($ref = $this->_ref($key))) { |
61 | 61 | $this->log('CACHE DELINK', $key); |
@@ -68,11 +68,11 @@ discard block |
||
68 | 68 | } |
69 | 69 | } |
70 | 70 | |
71 | - public function deleteMultiple ($keys) { |
|
71 | + public function deleteMultiple($keys) { |
|
72 | 72 | // unused |
73 | 73 | } |
74 | 74 | |
75 | - public function get ($key, $default = null) { |
|
75 | + public function get($key, $default = null) { |
|
76 | 76 | $path = $this->_path($key); |
77 | 77 | if (is_file($path)) { |
78 | 78 | if (filemtime($path) > time()) { |
@@ -95,19 +95,19 @@ discard block |
||
95 | 95 | /** |
96 | 96 | * @return LoggerInterface |
97 | 97 | */ |
98 | - public function getLogger () { |
|
98 | + public function getLogger() { |
|
99 | 99 | return $this->logger; |
100 | 100 | } |
101 | 101 | |
102 | - public function getMultiple ($keys, $default = null) { |
|
102 | + public function getMultiple($keys, $default = null) { |
|
103 | 103 | // unused |
104 | 104 | } |
105 | 105 | |
106 | - public function has ($key) { |
|
106 | + public function has($key) { |
|
107 | 107 | // unused |
108 | 108 | } |
109 | 109 | |
110 | - private function log (string $msg, string $key): void { |
|
110 | + private function log(string $msg, string $key): void { |
|
111 | 111 | if ($this->logger) { |
112 | 112 | $this->logger->log($msg, $key); |
113 | 113 | } |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | * @param DateInterval $ttl |
120 | 120 | * @return void |
121 | 121 | */ |
122 | - public function set ($key, $value, $ttl = null): void { |
|
122 | + public function set($key, $value, $ttl = null): void { |
|
123 | 123 | assert($ttl instanceof DateInterval); |
124 | 124 | $path = $this->_path($key); |
125 | 125 | $data = serialize($value); |
@@ -146,12 +146,12 @@ discard block |
||
146 | 146 | * @param null|LoggerInterface $logger |
147 | 147 | * @return $this |
148 | 148 | */ |
149 | - public function setLogger (?LoggerInterface $logger) { |
|
149 | + public function setLogger(?LoggerInterface $logger) { |
|
150 | 150 | $this->logger = $logger; |
151 | 151 | return $this; |
152 | 152 | } |
153 | 153 | |
154 | - public function setMultiple ($values, $ttl = null) { |
|
154 | + public function setMultiple($values, $ttl = null) { |
|
155 | 155 | // unused |
156 | 156 | } |
157 | 157 | } |
158 | 158 | \ No newline at end of file |
@@ -61,8 +61,7 @@ discard block |
||
61 | 61 | $this->log('CACHE DELINK', $key); |
62 | 62 | unlink($ref); |
63 | 63 | unlink($path); |
64 | - } |
|
65 | - elseif (is_file($path)) { |
|
64 | + } elseif (is_file($path)) { |
|
66 | 65 | $this->log('CACHE DELETE', $key); |
67 | 66 | unlink($path); |
68 | 67 | } |
@@ -85,8 +84,7 @@ discard block |
||
85 | 84 | } |
86 | 85 | $this->log('CACHE EXPIRE', $key); |
87 | 86 | unlink($path); |
88 | - } |
|
89 | - else { |
|
87 | + } else { |
|
90 | 88 | $this->log('CACHE MISS', $key); |
91 | 89 | } |
92 | 90 | return $default; |
@@ -132,8 +130,7 @@ discard block |
||
132 | 130 | if (is_object($value)) { |
133 | 131 | $this->log('CACHE SET', $key); |
134 | 132 | file_put_contents($path, $data); |
135 | - } |
|
136 | - elseif (!file_exists($path)) { |
|
133 | + } elseif (!file_exists($path)) { |
|
137 | 134 | $this->log('CACHE LINK', "{$key} => asana/{$value}"); |
138 | 135 | file_put_contents($path, $data); |
139 | 136 | symlink($this->_path("asana/{$value}"), $this->_ref($key)); |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | /** |
35 | 35 | * @param PSR16 $psr |
36 | 36 | */ |
37 | - public function __construct (PSR16 $psr) { |
|
37 | + public function __construct(PSR16 $psr) { |
|
38 | 38 | $this->psr = $psr; |
39 | 39 | $this->ttl = new DateInterval('PT1H'); |
40 | 40 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | * @param string $key |
44 | 44 | * @throws CacheException |
45 | 45 | */ |
46 | - protected function _delete (string $key): void { |
|
46 | + protected function _delete(string $key): void { |
|
47 | 47 | $this->psr->delete('asana/' . $key); |
48 | 48 | } |
49 | 49 | |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * @return null|string|AbstractEntity |
53 | 53 | * @throws CacheException |
54 | 54 | */ |
55 | - protected function _get (string $key) { |
|
55 | + protected function _get(string $key) { |
|
56 | 56 | return $this->psr->get('asana/' . $key); |
57 | 57 | } |
58 | 58 | |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | * @param mixed $value |
62 | 62 | * @throws CacheException |
63 | 63 | */ |
64 | - protected function _set (string $key, $value): void { |
|
64 | + protected function _set(string $key, $value): void { |
|
65 | 65 | $this->psr->set('asana/' . $key, $value, $this->ttl); |
66 | 66 | } |
67 | 67 | |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | * @return bool |
71 | 71 | * @throws CacheException |
72 | 72 | */ |
73 | - public function add (AbstractEntity $entity): bool { |
|
73 | + public function add(AbstractEntity $entity): bool { |
|
74 | 74 | if (!$entity->isDiff() and $gid = $entity->getGid()) { |
75 | 75 | $this->_set($gid, $entity); |
76 | 76 | return parent::add($entity); |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | * @param string[] $keys |
84 | 84 | * @throws CacheException |
85 | 85 | */ |
86 | - protected function addKeys (string $gid, array $keys): void { |
|
86 | + protected function addKeys(string $gid, array $keys): void { |
|
87 | 87 | parent::addKeys($gid, $keys); |
88 | 88 | // stash gid refs |
89 | 89 | foreach ($keys as $key) { |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | * @return null|AbstractEntity |
101 | 101 | * @throws CacheException |
102 | 102 | */ |
103 | - public function get (string $key, $caller, Closure $factory) { |
|
103 | + public function get(string $key, $caller, Closure $factory) { |
|
104 | 104 | // POOL MISS && CACHE HIT |
105 | 105 | if (!isset($this->gids[$key]) and $entity = $this->_get($key)) { |
106 | 106 | if ($entity instanceof AbstractEntity) { |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | /** |
126 | 126 | * @return DateInterval |
127 | 127 | */ |
128 | - public function getTtl () { |
|
128 | + public function getTtl() { |
|
129 | 129 | return $this->ttl; |
130 | 130 | } |
131 | 131 | |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | * @param array $keys |
134 | 134 | * @throws CacheException |
135 | 135 | */ |
136 | - public function remove (array $keys): void { |
|
136 | + public function remove(array $keys): void { |
|
137 | 137 | parent::remove($keys); |
138 | 138 | foreach ($keys as $key) { |
139 | 139 | $this->_delete($key); |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | * @param DateInterval $ttl |
145 | 145 | * @return $this |
146 | 146 | */ |
147 | - public function setTtl (DateInterval $ttl) { |
|
147 | + public function setTtl(DateInterval $ttl) { |
|
148 | 148 | $this->ttl = $ttl; |
149 | 149 | return $this; |
150 | 150 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @return string |
23 | 23 | */ |
24 | - abstract public function __toString (): string; |
|
24 | + abstract public function __toString(): string; |
|
25 | 25 | |
26 | 26 | /** |
27 | 27 | * Maps lazy-loaded / reloadable mapped {@see Data} to their proper expanded field expression. |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * @return $this |
43 | 43 | * @internal |
44 | 44 | */ |
45 | - public function __set ($unused, self $entity) { |
|
45 | + public function __set($unused, self $entity) { |
|
46 | 46 | if ($entity !== $this) { |
47 | 47 | $this->data = array_merge($this->data, array_diff_key($entity->data, $this->diff)); |
48 | 48 | } |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | * @return $this |
58 | 58 | * @internal |
59 | 59 | */ |
60 | - protected function _addWithPost (string $addPath, array $data, string $field, array $diff) { |
|
60 | + protected function _addWithPost(string $addPath, array $data, string $field, array $diff) { |
|
61 | 61 | if ($this->hasGid()) { |
62 | 62 | return $this->_setWithPost($addPath, $data, $field); |
63 | 63 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | * |
70 | 70 | * @internal |
71 | 71 | */ |
72 | - protected function _cache (): void { |
|
72 | + protected function _cache(): void { |
|
73 | 73 | $this->api->getCache()->add($this); |
74 | 74 | } |
75 | 75 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | * |
79 | 79 | * @internal |
80 | 80 | */ |
81 | - protected function _delete (): void { |
|
81 | + protected function _delete(): void { |
|
82 | 82 | $this->api->delete($this); |
83 | 83 | $this->api->getCache()->remove($this->getCacheKeys()); |
84 | 84 | } |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | * @param string $field |
90 | 90 | * @return mixed |
91 | 91 | */ |
92 | - protected function _get (string $field) { |
|
92 | + protected function _get(string $field) { |
|
93 | 93 | if (!array_key_exists($field, $this->data) and $this->hasGid()) { |
94 | 94 | $this->reload($field); |
95 | 95 | } |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | * @return $this |
105 | 105 | * @internal |
106 | 106 | */ |
107 | - protected function _removeWithPost (string $rmPath, array $data, string $field, $diff) { |
|
107 | + protected function _removeWithPost(string $rmPath, array $data, string $field, $diff) { |
|
108 | 108 | if ($this->hasGid()) { |
109 | 109 | return $this->_setWithPost($rmPath, $data, $field); |
110 | 110 | } |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | * @return $this |
122 | 122 | * @internal |
123 | 123 | */ |
124 | - protected function _save (string $dir = null) { |
|
124 | + protected function _save(string $dir = null) { |
|
125 | 125 | if (isset($dir)) { |
126 | 126 | $remote = $this->api->post($dir, $this->getDiff(), ['expand' => 'this']); |
127 | 127 | } |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | return $this; |
138 | 138 | } |
139 | 139 | |
140 | - protected function _setData (array $data): void { |
|
140 | + protected function _setData(array $data): void { |
|
141 | 141 | // make sure gid is consistently null|string across all entities. |
142 | 142 | $data['gid'] = empty($data['gid']) ? null : (string)$data['gid']; |
143 | 143 | |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | * @return $this |
158 | 158 | * @internal |
159 | 159 | */ |
160 | - protected function _setWithPost (string $path, array $data, string $field, $value = null) { |
|
160 | + protected function _setWithPost(string $path, array $data, string $field, $value = null) { |
|
161 | 161 | if ($this->hasGid()) { |
162 | 162 | /** @var array $remote */ |
163 | 163 | $remote = $this->api->post($path, $data, ['fields' => static::$optFields[$field] ?? $field]); |
@@ -175,14 +175,14 @@ discard block |
||
175 | 175 | * |
176 | 176 | * @return string[] |
177 | 177 | */ |
178 | - public function getCacheKeys () { |
|
178 | + public function getCacheKeys() { |
|
179 | 179 | return [$this->getGid(), (string)$this]; |
180 | 180 | } |
181 | 181 | |
182 | 182 | /** |
183 | 183 | * @return null|string |
184 | 184 | */ |
185 | - final public function getGid (): ?string { |
|
185 | + final public function getGid(): ?string { |
|
186 | 186 | return $this->data['gid'] ?? null; |
187 | 187 | } |
188 | 188 | |
@@ -191,14 +191,14 @@ discard block |
||
191 | 191 | * |
192 | 192 | * @return string |
193 | 193 | */ |
194 | - final public function getResourceType (): string { |
|
194 | + final public function getResourceType(): string { |
|
195 | 195 | return $this::TYPE; |
196 | 196 | } |
197 | 197 | |
198 | 198 | /** |
199 | 199 | * @return bool |
200 | 200 | */ |
201 | - final public function hasGid (): bool { |
|
201 | + final public function hasGid(): bool { |
|
202 | 202 | return isset($this->data['gid']); |
203 | 203 | } |
204 | 204 | |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | * @param string $field |
210 | 210 | * @return $this |
211 | 211 | */ |
212 | - public function reload (string $field = null) { |
|
212 | + public function reload(string $field = null) { |
|
213 | 213 | if (!$this->hasGid()) { |
214 | 214 | throw new LogicException(static::class . " has no GID, it can't be reloaded."); |
215 | 215 | } |
@@ -107,8 +107,7 @@ discard block |
||
107 | 107 | protected function _removeWithPost (string $rmPath, array $data, string $field, $diff) { |
108 | 108 | if ($this->hasGid()) { |
109 | 109 | return $this->_setWithPost($rmPath, $data, $field); |
110 | - } |
|
111 | - elseif (is_array($diff)) { |
|
110 | + } elseif (is_array($diff)) { |
|
112 | 111 | return $this->_set($field, array_values(array_diff($this->data[$field] ?? [], $diff))); |
113 | 112 | } |
114 | 113 | return $this->_set($field, array_values(array_filter($this->data[$field] ?? [], $diff))); |
@@ -124,11 +123,9 @@ discard block |
||
124 | 123 | protected function _save (string $dir = null) { |
125 | 124 | if (isset($dir)) { |
126 | 125 | $remote = $this->api->post($dir, $this->getDiff(), ['expand' => 'this']); |
127 | - } |
|
128 | - elseif ($this->isDiff()) { |
|
126 | + } elseif ($this->isDiff()) { |
|
129 | 127 | $remote = $this->api->put($this, $this->getDiff(), ['expand' => 'this']); |
130 | - } |
|
131 | - else { |
|
128 | + } else { |
|
132 | 129 | return $this; |
133 | 130 | } |
134 | 131 | /** @var array $remote */ |
@@ -217,11 +214,9 @@ discard block |
||
217 | 214 | $optField = static::$optFields[$field] ?? $field; |
218 | 215 | $value = $this->api->get($this, [], ['fields' => $optField])[$field] ?? null; |
219 | 216 | $this->_setMapped($field, $value); |
220 | - } |
|
221 | - elseif ($remote = $this->api->get($this, [], ['expand' => 'this'])) { |
|
217 | + } elseif ($remote = $this->api->get($this, [], ['expand' => 'this'])) { |
|
222 | 218 | $this->_setData($remote); |
223 | - } |
|
224 | - else { // deleted upstream. |
|
219 | + } else { // deleted upstream. |
|
225 | 220 | $this->api->getCache()->remove($this->getCacheKeys()); |
226 | 221 | throw new RuntimeException("{$this} was deleted upstream."); |
227 | 222 | } |
@@ -53,25 +53,25 @@ discard block |
||
53 | 53 | /** |
54 | 54 | * @return Cache |
55 | 55 | */ |
56 | - public static function getCache () { |
|
56 | + public static function getCache() { |
|
57 | 57 | return static::$cache ?? static::$cache = new Cache(); |
58 | 58 | } |
59 | 59 | |
60 | 60 | /** |
61 | 61 | * @return Api |
62 | 62 | */ |
63 | - public static function getDefault () { |
|
63 | + public static function getDefault() { |
|
64 | 64 | return self::$default; |
65 | 65 | } |
66 | 66 | |
67 | 67 | /** |
68 | 68 | * @return LoggerInterface |
69 | 69 | */ |
70 | - public static function getLogger () { |
|
70 | + public static function getLogger() { |
|
71 | 71 | return static::$logger |
72 | 72 | ?? static::$logger = new class implements LoggerInterface { |
73 | 73 | |
74 | - public function log (string $message, string $path, array $data = null): void { |
|
74 | + public function log(string $message, string $path, array $data = null): void { |
|
75 | 75 | // stub |
76 | 76 | } |
77 | 77 | |
@@ -81,28 +81,28 @@ discard block |
||
81 | 81 | /** |
82 | 82 | * @param Cache $cache |
83 | 83 | */ |
84 | - public static function setCache (Cache $cache) { |
|
84 | + public static function setCache(Cache $cache) { |
|
85 | 85 | static::$cache = $cache; |
86 | 86 | } |
87 | 87 | |
88 | 88 | /** |
89 | 89 | * @param Api $default |
90 | 90 | */ |
91 | - public static function setDefault (Api $default) { |
|
91 | + public static function setDefault(Api $default) { |
|
92 | 92 | self::$default = $default; |
93 | 93 | } |
94 | 94 | |
95 | 95 | /** |
96 | 96 | * @param LoggerInterface $logger |
97 | 97 | */ |
98 | - public static function setLogger (LoggerInterface $logger) { |
|
98 | + public static function setLogger(LoggerInterface $logger) { |
|
99 | 99 | static::$logger = $logger; |
100 | 100 | } |
101 | 101 | |
102 | 102 | /** |
103 | 103 | * @param string $token |
104 | 104 | */ |
105 | - public function __construct (string $token) { |
|
105 | + public function __construct(string $token) { |
|
106 | 106 | $this->token = $token; |
107 | 107 | if (!static::$default) { |
108 | 108 | static::$default = $this; |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | * @return null|array |
119 | 119 | * @internal |
120 | 120 | */ |
121 | - protected function _exec (string $method, string $path, array $opts = []) { |
|
121 | + protected function _exec(string $method, string $path, array $opts = []) { |
|
122 | 122 | static::getLogger()->log($method, $path, $opts); |
123 | 123 | /** @var resource $ch */ |
124 | 124 | $ch = curl_init(); |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | * @return string |
168 | 168 | * @internal |
169 | 169 | */ |
170 | - protected function _getPath (string $path, array $query): string { |
|
170 | + protected function _getPath(string $path, array $query): string { |
|
171 | 171 | return $query ? $path . '?' . http_build_query($query) : $path; |
172 | 172 | } |
173 | 173 | |
@@ -176,8 +176,8 @@ discard block |
||
176 | 176 | * @return null|array |
177 | 177 | * @internal |
178 | 178 | */ |
179 | - protected function _jsonDecode (string $json) { |
|
180 | - return json_decode($json, true, JSON_BIGINT_AS_STRING | JSON_THROW_ON_ERROR); |
|
179 | + protected function _jsonDecode(string $json) { |
|
180 | + return json_decode($json, true, JSON_BIGINT_AS_STRING|JSON_THROW_ON_ERROR); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -185,8 +185,8 @@ discard block |
||
185 | 185 | * @return string |
186 | 186 | * @internal |
187 | 187 | */ |
188 | - protected function _jsonEncode (array $data): string { |
|
189 | - return json_encode($data, JSON_PRETTY_PRINT | JSON_THROW_ON_ERROR); |
|
188 | + protected function _jsonEncode(array $data): string { |
|
189 | + return json_encode($data, JSON_PRETTY_PRINT|JSON_THROW_ON_ERROR); |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | /** |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | * |
195 | 195 | * @param string $path |
196 | 196 | */ |
197 | - public function delete (string $path): void { |
|
197 | + public function delete(string $path): void { |
|
198 | 198 | $this->_exec('DELETE', $path); |
199 | 199 | } |
200 | 200 | |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | * @param array $data |
209 | 209 | * @return mixed|Data|AbstractEntity |
210 | 210 | */ |
211 | - public function factory ($caller, string $class, array $data = []) { |
|
211 | + public function factory($caller, string $class, array $data = []) { |
|
212 | 212 | return new $class($caller, $data); |
213 | 213 | } |
214 | 214 | |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | * @param array $options |
221 | 221 | * @return null|array |
222 | 222 | */ |
223 | - public function get (string $path, array $query = [], array $options = []) { |
|
223 | + public function get(string $path, array $query = [], array $options = []) { |
|
224 | 224 | foreach ($options as $name => $value) { |
225 | 225 | $query["opt_{$name}"] = $value; |
226 | 226 | } |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | * @param string $gid |
235 | 235 | * @return null|Attachment |
236 | 236 | */ |
237 | - public function getAttachment (string $gid) { |
|
237 | + public function getAttachment(string $gid) { |
|
238 | 238 | return $this->load($this, Attachment::class, "attachments/{$gid}"); |
239 | 239 | } |
240 | 240 | |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | * @param string $gid |
245 | 245 | * @return null|CustomField |
246 | 246 | */ |
247 | - public function getCustomField (string $gid) { |
|
247 | + public function getCustomField(string $gid) { |
|
248 | 248 | return $this->load($this, CustomField::class, "custom_fields/{$gid}"); |
249 | 249 | } |
250 | 250 | |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | * |
255 | 255 | * @return Workspace |
256 | 256 | */ |
257 | - public function getDefaultWorkspace () { |
|
257 | + public function getDefaultWorkspace() { |
|
258 | 258 | return $this->getMe()->getDefaultWorkspace(); |
259 | 259 | } |
260 | 260 | |
@@ -263,7 +263,7 @@ discard block |
||
263 | 263 | * |
264 | 264 | * @return User |
265 | 265 | */ |
266 | - public function getMe () { |
|
266 | + public function getMe() { |
|
267 | 267 | return $this->getUser('me'); |
268 | 268 | } |
269 | 269 | |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | * @param string $gid |
274 | 274 | * @return null|Portfolio |
275 | 275 | */ |
276 | - public function getPortfolio (string $gid) { |
|
276 | + public function getPortfolio(string $gid) { |
|
277 | 277 | return $this->load($this, Portfolio::class, "portfolios/{$gid}"); |
278 | 278 | } |
279 | 279 | |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | * @param string $gid |
284 | 284 | * @return null|Project |
285 | 285 | */ |
286 | - public function getProject (string $gid) { |
|
286 | + public function getProject(string $gid) { |
|
287 | 287 | return $this->load($this, Project::class, "projects/{$gid}"); |
288 | 288 | } |
289 | 289 | |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | * @param string $gid |
294 | 294 | * @return null|Section |
295 | 295 | */ |
296 | - public function getSection (string $gid) { |
|
296 | + public function getSection(string $gid) { |
|
297 | 297 | return $this->load($this, Section::class, "sections/{$gid}"); |
298 | 298 | } |
299 | 299 | |
@@ -303,7 +303,7 @@ discard block |
||
303 | 303 | * @param string $gid |
304 | 304 | * @return null|Story |
305 | 305 | */ |
306 | - public function getStory (string $gid) { |
|
306 | + public function getStory(string $gid) { |
|
307 | 307 | return $this->load($this, Story::class, "stories/{$gid}"); |
308 | 308 | } |
309 | 309 | |
@@ -313,7 +313,7 @@ discard block |
||
313 | 313 | * @param string $gid |
314 | 314 | * @return null|Tag |
315 | 315 | */ |
316 | - public function getTag (string $gid) { |
|
316 | + public function getTag(string $gid) { |
|
317 | 317 | return $this->load($this, Tag::class, "tags/{$gid}"); |
318 | 318 | } |
319 | 319 | |
@@ -323,7 +323,7 @@ discard block |
||
323 | 323 | * @param string $gid |
324 | 324 | * @return null|Task |
325 | 325 | */ |
326 | - public function getTask (string $gid) { |
|
326 | + public function getTask(string $gid) { |
|
327 | 327 | return $this->load($this, Task::class, "tasks/{$gid}"); |
328 | 328 | } |
329 | 329 | |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | * @param string $gid |
334 | 334 | * @return null|TaskList |
335 | 335 | */ |
336 | - public function getTaskList (string $gid) { |
|
336 | + public function getTaskList(string $gid) { |
|
337 | 337 | return $this->load($this, TaskList::class, "user_task_lists/{$gid}"); |
338 | 338 | } |
339 | 339 | |
@@ -343,7 +343,7 @@ discard block |
||
343 | 343 | * @param string $gid |
344 | 344 | * @return null|Team |
345 | 345 | */ |
346 | - public function getTeam (string $gid) { |
|
346 | + public function getTeam(string $gid) { |
|
347 | 347 | return $this->load($this, Team::class, "teams/{$gid}"); |
348 | 348 | } |
349 | 349 | |
@@ -353,7 +353,7 @@ discard block |
||
353 | 353 | * @param string $gid |
354 | 354 | * @return null|User |
355 | 355 | */ |
356 | - public function getUser (string $gid) { |
|
356 | + public function getUser(string $gid) { |
|
357 | 357 | return $this->load($this, User::class, "users/{$gid}"); |
358 | 358 | } |
359 | 359 | |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | * @param string $gid |
362 | 362 | * @return ProjectWebhook|TaskWebhook |
363 | 363 | */ |
364 | - public function getWebhook (string $gid) { |
|
364 | + public function getWebhook(string $gid) { |
|
365 | 365 | return $this->getCache()->get($gid, $this, function() use ($gid) { |
366 | 366 | static $classes = [ |
367 | 367 | Project::TYPE => ProjectWebhook::class, |
@@ -382,7 +382,7 @@ discard block |
||
382 | 382 | * @param array $data |
383 | 383 | * @return Event |
384 | 384 | */ |
385 | - public function getWebhookEvent (array $data) { |
|
385 | + public function getWebhookEvent(array $data) { |
|
386 | 386 | return $this->factory($this, Event::class, $data); |
387 | 387 | } |
388 | 388 | |
@@ -392,7 +392,7 @@ discard block |
||
392 | 392 | * @param string $gid |
393 | 393 | * @return null|Workspace |
394 | 394 | */ |
395 | - public function getWorkspace (string $gid) { |
|
395 | + public function getWorkspace(string $gid) { |
|
396 | 396 | return $this->load($this, Workspace::class, "workspaces/{$gid}"); |
397 | 397 | } |
398 | 398 | |
@@ -402,7 +402,7 @@ discard block |
||
402 | 402 | * @param string $name |
403 | 403 | * @return null|Workspace |
404 | 404 | */ |
405 | - public function getWorkspaceByName (string $name) { |
|
405 | + public function getWorkspaceByName(string $name) { |
|
406 | 406 | foreach ($this->getWorkspaces() as $workspace) { |
407 | 407 | if ($workspace->getName() === $name) { |
408 | 408 | return $workspace; |
@@ -416,7 +416,7 @@ discard block |
||
416 | 416 | * |
417 | 417 | * @return Workspace[] |
418 | 418 | */ |
419 | - public function getWorkspaces () { |
|
419 | + public function getWorkspaces() { |
|
420 | 420 | return $this->getMe()->getWorkspaces(); |
421 | 421 | } |
422 | 422 | |
@@ -431,7 +431,7 @@ discard block |
||
431 | 431 | * @param array $query |
432 | 432 | * @return null|mixed|AbstractEntity |
433 | 433 | */ |
434 | - public function load ($caller, string $class, string $path, array $query = []) { |
|
434 | + public function load($caller, string $class, string $path, array $query = []) { |
|
435 | 435 | $key = $this->_getPath($path, $query); |
436 | 436 | return $this->getCache()->get($key, $caller, function($caller) use ($class, $path, $query) { |
437 | 437 | $data = $this->get($path, $query, ['expand' => 'this']); |
@@ -449,7 +449,7 @@ discard block |
||
449 | 449 | * @param int $pages |
450 | 450 | * @return array|AbstractEntity[] |
451 | 451 | */ |
452 | - public function loadAll ($caller, string $class, string $path, array $query = [], int $pages = 0) { |
|
452 | + public function loadAll($caller, string $class, string $path, array $query = [], int $pages = 0) { |
|
453 | 453 | return iterator_to_array($this->loadEach(...func_get_args())); |
454 | 454 | } |
455 | 455 | |
@@ -465,7 +465,7 @@ discard block |
||
465 | 465 | * @param int $pages If positive, stops after this many pages have been fetched. |
466 | 466 | * @return Generator|AbstractEntity[] |
467 | 467 | */ |
468 | - public function loadEach ($caller, string $class, string $path, array $query = [], int $pages = 0) { |
|
468 | + public function loadEach($caller, string $class, string $path, array $query = [], int $pages = 0) { |
|
469 | 469 | $hardLimit = isset($query['limit']); |
470 | 470 | $query['opt_expand'] = 'this'; |
471 | 471 | $query += ['limit' => 100]; |
@@ -490,7 +490,7 @@ discard block |
||
490 | 490 | * @param array $options |
491 | 491 | * @return null|array |
492 | 492 | */ |
493 | - public function post (string $path, array $data = [], array $options = []) { |
|
493 | + public function post(string $path, array $data = [], array $options = []) { |
|
494 | 494 | $response = $this->_exec('POST', $path, [ |
495 | 495 | CURLOPT_HTTPHEADER => ['Content-Type: application/json'], |
496 | 496 | CURLOPT_POSTFIELDS => $this->_jsonEncode(['options' => $options, 'data' => $data]) |
@@ -506,7 +506,7 @@ discard block |
||
506 | 506 | * @param array $options |
507 | 507 | * @return null|array |
508 | 508 | */ |
509 | - public function put (string $path, array $data = [], array $options = []) { |
|
509 | + public function put(string $path, array $data = [], array $options = []) { |
|
510 | 510 | $response = $this->_exec('PUT', $path, [ |
511 | 511 | CURLOPT_HTTPHEADER => ['Content-Type: application/json'], |
512 | 512 | CURLOPT_POSTFIELDS => $this->_jsonEncode(['options' => $options, 'data' => $data]) |
@@ -525,7 +525,7 @@ discard block |
||
525 | 525 | * @param null|string $token |
526 | 526 | * @return Event[] |
527 | 527 | */ |
528 | - public function sync (string $gid, ?string &$token) { |
|
528 | + public function sync(string $gid, ?string &$token) { |
|
529 | 529 | try { |
530 | 530 | $response = $this->_exec('GET', $this->_getPath('events', [ |
531 | 531 | 'resource' => $gid, |
@@ -559,7 +559,7 @@ discard block |
||
559 | 559 | * @param string $to |
560 | 560 | * @return null|array |
561 | 561 | */ |
562 | - public function upload (string $file, string $to) { |
|
562 | + public function upload(string $file, string $to) { |
|
563 | 563 | $response = $this->_exec('POST', $to, [ |
564 | 564 | CURLOPT_POSTFIELDS => ['file' => new CURLFile(realpath($file))] // multipart/form-data |
565 | 565 | ]); |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | 'new_value*' => Event::GRAPH |
31 | 31 | ]; |
32 | 32 | |
33 | - protected function _setMapped (string $field, $value): void { |
|
33 | + protected function _setMapped(string $field, $value): void { |
|
34 | 34 | if (!is_array($value)) { |
35 | 35 | $this->data[$field] = $value; |
36 | 36 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | /** |
43 | 43 | * @return null|number|string|User|Project|Section|Task|FieldEntry|Attachment|Story|Like |
44 | 44 | */ |
45 | - public function getValue () { |
|
45 | + public function getValue() { |
|
46 | 46 | $key = [ |
47 | 47 | 'added' => 'added_value', |
48 | 48 | 'removed' => 'removed_value', |
@@ -33,8 +33,7 @@ |
||
33 | 33 | protected function _setMapped (string $field, $value): void { |
34 | 34 | if (!is_array($value)) { |
35 | 35 | $this->data[$field] = $value; |
36 | - } |
|
37 | - else { |
|
36 | + } else { |
|
38 | 37 | parent::_setMapped($field, $value); |
39 | 38 | } |
40 | 39 | } |
@@ -98,15 +98,15 @@ discard block |
||
98 | 98 | 'memberships' => 'memberships.(project|section)' |
99 | 99 | ]; |
100 | 100 | |
101 | - final public function __toString (): string { |
|
101 | + final public function __toString(): string { |
|
102 | 102 | return "tasks/{$this->getGid()}"; |
103 | 103 | } |
104 | 104 | |
105 | - final protected function _getDir (): string { |
|
105 | + final protected function _getDir(): string { |
|
106 | 106 | return 'tasks'; |
107 | 107 | } |
108 | 108 | |
109 | - protected function _save (string $dir = null) { |
|
109 | + protected function _save(string $dir = null) { |
|
110 | 110 | parent::_save($dir); |
111 | 111 | // use isset() to avoid has() fetch. |
112 | 112 | if (isset($this->data['custom_fields'])) { |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | return $this; |
119 | 119 | } |
120 | 120 | |
121 | - protected function _setData (array $data): void { |
|
121 | + protected function _setData(array $data): void { |
|
122 | 122 | // hearts were deprecated for likes |
123 | 123 | unset($data['hearted'], $data['hearts'], $data['num_hearts']); |
124 | 124 | |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | * @param string $file |
139 | 139 | * @return Attachment |
140 | 140 | */ |
141 | - public function addAttachment (string $file) { |
|
141 | + public function addAttachment(string $file) { |
|
142 | 142 | /** @var Attachment $attachment */ |
143 | 143 | $attachment = $this->api->factory($this, Attachment::class, ['parent' => $this]); |
144 | 144 | return $attachment->upload($file); |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | * @param string $text |
151 | 151 | * @return Story |
152 | 152 | */ |
153 | - public function addComment (string $text) { |
|
153 | + public function addComment(string $text) { |
|
154 | 154 | return $this->newComment()->setText($text)->create(); |
155 | 155 | } |
156 | 156 | |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | * @param Task[] $tasks |
162 | 162 | * @return $this |
163 | 163 | */ |
164 | - public function addDependencies (array $tasks) { |
|
164 | + public function addDependencies(array $tasks) { |
|
165 | 165 | $this->api->post("{$this}/addDependencies", ['dependents' => array_column($tasks, 'gid')]); |
166 | 166 | return $this; |
167 | 167 | } |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | * @param Task $task |
174 | 174 | * @return $this |
175 | 175 | */ |
176 | - public function addDependency (Task $task) { |
|
176 | + public function addDependency(Task $task) { |
|
177 | 177 | return $this->addDependencies([$task]); |
178 | 178 | } |
179 | 179 | |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | * @param Task $task |
185 | 185 | * @return $this |
186 | 186 | */ |
187 | - public function addDependent (Task $task) { |
|
187 | + public function addDependent(Task $task) { |
|
188 | 188 | return $this->addDependents([$task]); |
189 | 189 | } |
190 | 190 | |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | * @param Task[] $tasks |
196 | 196 | * @return $this |
197 | 197 | */ |
198 | - public function addDependents (array $tasks) { |
|
198 | + public function addDependents(array $tasks) { |
|
199 | 199 | $this->api->post("{$this}/addDependents", ['dependents' => array_column($tasks, 'gid')]); |
200 | 200 | return $this; |
201 | 201 | } |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | * @param User $user |
207 | 207 | * @return $this |
208 | 208 | */ |
209 | - public function addFollower (User $user) { |
|
209 | + public function addFollower(User $user) { |
|
210 | 210 | return $this->addFollowers([$user]); |
211 | 211 | } |
212 | 212 | |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | * @param User[] $users |
219 | 219 | * @return $this |
220 | 220 | */ |
221 | - public function addFollowers (array $users) { |
|
221 | + public function addFollowers(array $users) { |
|
222 | 222 | return $this->_addWithPost("{$this}/addFollowers", [ |
223 | 223 | 'followers' => array_column($users, 'gid') |
224 | 224 | ], 'followers', $users); |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | * @param Tag $tag |
233 | 233 | * @return $this |
234 | 234 | */ |
235 | - public function addTag (Tag $tag) { |
|
235 | + public function addTag(Tag $tag) { |
|
236 | 236 | return $this->_addWithPost("{$this}/addTag", [ |
237 | 237 | 'tag' => $tag->getGid() |
238 | 238 | ], 'tags', [$tag]); |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | * @param Section|null $section |
248 | 248 | * @return $this |
249 | 249 | */ |
250 | - public function addToProject (Project $project, Section $section = null) { |
|
250 | + public function addToProject(Project $project, Section $section = null) { |
|
251 | 251 | /** @var Membership $membership */ |
252 | 252 | $membership = $this->api->factory($this, Membership::class) |
253 | 253 | ->_set('project', $project) |
@@ -262,7 +262,7 @@ discard block |
||
262 | 262 | * @param string $target |
263 | 263 | * @return TaskWebhook |
264 | 264 | */ |
265 | - public function addWebhook (string $target) { |
|
265 | + public function addWebhook(string $target) { |
|
266 | 266 | /** @var TaskWebhook $webhook */ |
267 | 267 | $webhook = $this->api->factory($this, TaskWebhook::class); |
268 | 268 | return $webhook->create($this, $target); |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | * @param string[] $include |
279 | 279 | * @return Job |
280 | 280 | */ |
281 | - public function duplicate (string $name, array $include) { |
|
281 | + public function duplicate(string $name, array $include) { |
|
282 | 282 | /** @var array $remote */ |
283 | 283 | $remote = $this->api->post("{$this}/duplicate", [ |
284 | 284 | 'name' => $name, |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | * @depends after-create |
294 | 294 | * @return Attachment[] |
295 | 295 | */ |
296 | - public function getAttachments () { |
|
296 | + public function getAttachments() { |
|
297 | 297 | return $this->api->loadAll($this, Attachment::class, "{$this}/attachments"); |
298 | 298 | } |
299 | 299 | |
@@ -303,7 +303,7 @@ discard block |
||
303 | 303 | * @depends after-create |
304 | 304 | * @return Story[] |
305 | 305 | */ |
306 | - public function getComments () { |
|
306 | + public function getComments() { |
|
307 | 307 | return $this->selectStories(function(Story $story) { |
308 | 308 | return $story->isComment(); |
309 | 309 | }); |
@@ -315,7 +315,7 @@ discard block |
||
315 | 315 | * @depends after-create |
316 | 316 | * @return Task[] |
317 | 317 | */ |
318 | - public function getDependencies () { |
|
318 | + public function getDependencies() { |
|
319 | 319 | return $this->api->loadAll($this, self::class, "{$this}/dependencies"); |
320 | 320 | } |
321 | 321 | |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | * @depends after-create |
326 | 326 | * @return Task[] |
327 | 327 | */ |
328 | - public function getDependents () { |
|
328 | + public function getDependents() { |
|
329 | 329 | return $this->api->loadAll($this, self::class, "{$this}/dependents"); |
330 | 330 | } |
331 | 331 | |
@@ -336,7 +336,7 @@ discard block |
||
336 | 336 | * @param null|string $token |
337 | 337 | * @return Event[] |
338 | 338 | */ |
339 | - public function getEvents (&$token) { |
|
339 | + public function getEvents(&$token) { |
|
340 | 340 | return $this->api->sync($this->getGid(), $token); |
341 | 341 | } |
342 | 342 | |
@@ -348,14 +348,14 @@ discard block |
||
348 | 348 | * |
349 | 349 | * @return External |
350 | 350 | */ |
351 | - public function getExternal () { |
|
351 | + public function getExternal() { |
|
352 | 352 | return $this->_get('external') ?? $this->data['external'] = $this->api->factory($this, External::class); |
353 | 353 | } |
354 | 354 | |
355 | 355 | /** |
356 | 356 | * @return Project[] |
357 | 357 | */ |
358 | - public function getProjects () { |
|
358 | + public function getProjects() { |
|
359 | 359 | return array_map(function(Membership $membership) { |
360 | 360 | return $membership->getProject(); |
361 | 361 | }, $this->getMemberships()); |
@@ -367,7 +367,7 @@ discard block |
||
367 | 367 | * @depends after-create |
368 | 368 | * @return Story[] |
369 | 369 | */ |
370 | - public function getStories () { |
|
370 | + public function getStories() { |
|
371 | 371 | return $this->api->loadAll($this, Story::class, "{$this}/stories"); |
372 | 372 | } |
373 | 373 | |
@@ -377,7 +377,7 @@ discard block |
||
377 | 377 | * @depends after-create |
378 | 378 | * @return Task[] |
379 | 379 | */ |
380 | - public function getSubTasks () { |
|
380 | + public function getSubTasks() { |
|
381 | 381 | return $this->api->loadAll($this, self::class, "{$this}/subtasks"); |
382 | 382 | } |
383 | 383 | |
@@ -387,7 +387,7 @@ discard block |
||
387 | 387 | * @depends after-create |
388 | 388 | * @return string |
389 | 389 | */ |
390 | - public function getUrl (): string { |
|
390 | + public function getUrl(): string { |
|
391 | 391 | return "https://app.asana.com/0/0/{$this->getGid()}"; |
392 | 392 | } |
393 | 393 | |
@@ -397,7 +397,7 @@ discard block |
||
397 | 397 | * @depends after-create |
398 | 398 | * @return TaskWebhook[] |
399 | 399 | */ |
400 | - public function getWebhooks () { |
|
400 | + public function getWebhooks() { |
|
401 | 401 | return $this->api->loadAll($this, TaskWebhook::class, 'webhooks', [ |
402 | 402 | 'workspace' => $this->getWorkspace()->getGid(), |
403 | 403 | 'resource' => $this->getGid() |
@@ -407,7 +407,7 @@ discard block |
||
407 | 407 | /** |
408 | 408 | * @return bool |
409 | 409 | */ |
410 | - public function isRenderedAsSeparator (): bool { |
|
410 | + public function isRenderedAsSeparator(): bool { |
|
411 | 411 | return $this->_is('is_rendered_as_separator'); |
412 | 412 | } |
413 | 413 | |
@@ -417,7 +417,7 @@ discard block |
||
417 | 417 | * @depends after-create |
418 | 418 | * @return Story |
419 | 419 | */ |
420 | - public function newComment () { |
|
420 | + public function newComment() { |
|
421 | 421 | return $this->api->factory($this, Story::class, [ |
422 | 422 | 'resource_subtype' => Story::TYPE_COMMENT_ADDED, |
423 | 423 | 'target' => $this |
@@ -430,7 +430,7 @@ discard block |
||
430 | 430 | * @depends after-create |
431 | 431 | * @return Task |
432 | 432 | */ |
433 | - public function newSubTask () { |
|
433 | + public function newSubTask() { |
|
434 | 434 | /** @var Task $sub */ |
435 | 435 | $sub = $this->api->factory($this, self::class); |
436 | 436 | return $sub->setParent($this); |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | * @param Task[] $tasks |
444 | 444 | * @return $this |
445 | 445 | */ |
446 | - public function removeDependencies (array $tasks) { |
|
446 | + public function removeDependencies(array $tasks) { |
|
447 | 447 | $this->api->post("{$this}/removeDependencies", ['dependencies' => array_column($tasks, 'gid')]); |
448 | 448 | return $this; |
449 | 449 | } |
@@ -455,7 +455,7 @@ discard block |
||
455 | 455 | * @param Task $task |
456 | 456 | * @return $this |
457 | 457 | */ |
458 | - public function removeDependency (Task $task) { |
|
458 | + public function removeDependency(Task $task) { |
|
459 | 459 | return $this->removeDependencies([$task]); |
460 | 460 | } |
461 | 461 | |
@@ -466,7 +466,7 @@ discard block |
||
466 | 466 | * @param Task $task |
467 | 467 | * @return $this |
468 | 468 | */ |
469 | - public function removeDependent (Task $task) { |
|
469 | + public function removeDependent(Task $task) { |
|
470 | 470 | return $this->removeDependents([$task]); |
471 | 471 | } |
472 | 472 | |
@@ -477,7 +477,7 @@ discard block |
||
477 | 477 | * @param Task[] $tasks |
478 | 478 | * @return $this |
479 | 479 | */ |
480 | - public function removeDependents (array $tasks) { |
|
480 | + public function removeDependents(array $tasks) { |
|
481 | 481 | $this->api->post("{$this}/removeDependents", ['dependents' => array_column($tasks, 'gid')]); |
482 | 482 | return $this; |
483 | 483 | } |
@@ -488,7 +488,7 @@ discard block |
||
488 | 488 | * @param User $user |
489 | 489 | * @return $this |
490 | 490 | */ |
491 | - public function removeFollower (User $user) { |
|
491 | + public function removeFollower(User $user) { |
|
492 | 492 | return $this->removeFollowers([$user]); |
493 | 493 | } |
494 | 494 | |
@@ -500,7 +500,7 @@ discard block |
||
500 | 500 | * @param User[] $users |
501 | 501 | * @return $this |
502 | 502 | */ |
503 | - public function removeFollowers (array $users) { |
|
503 | + public function removeFollowers(array $users) { |
|
504 | 504 | return $this->_removeWithPost("{$this}/removeFollowers", [ |
505 | 505 | 'followers' => array_column($users, 'gid') |
506 | 506 | ], 'followers', $users); |
@@ -514,7 +514,7 @@ discard block |
||
514 | 514 | * @param Project $project |
515 | 515 | * @return $this |
516 | 516 | */ |
517 | - public function removeFromProject (Project $project) { |
|
517 | + public function removeFromProject(Project $project) { |
|
518 | 518 | return $this->_removeWithPost("{$this}/removeProject", [ |
519 | 519 | 'project' => $project->getGid() |
520 | 520 | ], 'memberships', function(Membership $membership) use ($project) { |
@@ -530,7 +530,7 @@ discard block |
||
530 | 530 | * @param Tag $tag |
531 | 531 | * @return $this |
532 | 532 | */ |
533 | - public function removeTag (Tag $tag) { |
|
533 | + public function removeTag(Tag $tag) { |
|
534 | 534 | return $this->_removeWithPost("{$this}/removeTag", [ |
535 | 535 | 'tag' => $tag->getGid() |
536 | 536 | ], 'tags', [$tag]); |
@@ -540,7 +540,7 @@ discard block |
||
540 | 540 | * @param callable $filter `fn( Attachment $attachment): bool` |
541 | 541 | * @return Attachment[] |
542 | 542 | */ |
543 | - public function selectAttachments (callable $filter) { |
|
543 | + public function selectAttachments(callable $filter) { |
|
544 | 544 | return $this->_select($this->getAttachments(), $filter); |
545 | 545 | } |
546 | 546 | |
@@ -548,7 +548,7 @@ discard block |
||
548 | 548 | * @param callable $filter `fn( Story $comment ): bool` |
549 | 549 | * @return Story[] |
550 | 550 | */ |
551 | - public function selectComments (callable $filter) { |
|
551 | + public function selectComments(callable $filter) { |
|
552 | 552 | return $this->_select($this->getComments(), $filter); |
553 | 553 | } |
554 | 554 | |
@@ -556,7 +556,7 @@ discard block |
||
556 | 556 | * @param callable $filter `fn( Task $dependency ): bool` |
557 | 557 | * @return Task[] |
558 | 558 | */ |
559 | - public function selectDependencies (callable $filter) { |
|
559 | + public function selectDependencies(callable $filter) { |
|
560 | 560 | return $this->_select($this->getDependencies(), $filter); |
561 | 561 | } |
562 | 562 | |
@@ -564,7 +564,7 @@ discard block |
||
564 | 564 | * @param callable $filter `fn( Task $dependent ): bool` |
565 | 565 | * @return Task[] |
566 | 566 | */ |
567 | - public function selectDependents (callable $filter) { |
|
567 | + public function selectDependents(callable $filter) { |
|
568 | 568 | return $this->_select($this->getDependents(), $filter); |
569 | 569 | } |
570 | 570 | |
@@ -572,7 +572,7 @@ discard block |
||
572 | 572 | * @param callable $filter `fn( Project $project ): bool` |
573 | 573 | * @return Project[] |
574 | 574 | */ |
575 | - public function selectProjects (callable $filter) { |
|
575 | + public function selectProjects(callable $filter) { |
|
576 | 576 | return $this->_select($this->getProjects(), $filter); |
577 | 577 | } |
578 | 578 | |
@@ -580,7 +580,7 @@ discard block |
||
580 | 580 | * @param callable $filter `fn( Story $story ): bool` |
581 | 581 | * @return Story[] |
582 | 582 | */ |
583 | - public function selectStories (callable $filter) { |
|
583 | + public function selectStories(callable $filter) { |
|
584 | 584 | return $this->_select($this->getStories(), $filter); |
585 | 585 | } |
586 | 586 | |
@@ -588,7 +588,7 @@ discard block |
||
588 | 588 | * @param callable $filter `fn( Task $subtask ): bool` |
589 | 589 | * @return Task[] |
590 | 590 | */ |
591 | - public function selectSubTasks (callable $filter) { |
|
591 | + public function selectSubTasks(callable $filter) { |
|
592 | 592 | return $this->_select($this->getSubTasks(), $filter); |
593 | 593 | } |
594 | 594 | |
@@ -599,7 +599,7 @@ discard block |
||
599 | 599 | * @param null|Task $parent |
600 | 600 | * @return $this |
601 | 601 | */ |
602 | - public function setParent (?self $parent) { |
|
602 | + public function setParent(?self $parent) { |
|
603 | 603 | return $this->_setWithPost("{$this}/setParent", [ |
604 | 604 | 'parent' => $parent |
605 | 605 | ], 'parent', $parent); |
@@ -609,7 +609,7 @@ discard block |
||
609 | 609 | * @param bool $flag |
610 | 610 | * @return $this |
611 | 611 | */ |
612 | - public function setRenderedAsSeparator (bool $flag) { |
|
612 | + public function setRenderedAsSeparator(bool $flag) { |
|
613 | 613 | return $this->_set('is_rendered_as_separator', $flag); |
614 | 614 | } |
615 | 615 |