@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | |
18 | 18 | const NAME = 'asana'; |
19 | 19 | |
20 | - public function boot () { |
|
20 | + public function boot() { |
|
21 | 21 | $this->publishes([ |
22 | 22 | __DIR__ . '/config/asana.php' => $this->app->configPath('asana.php') |
23 | 23 | ]); |
@@ -30,11 +30,11 @@ discard block |
||
30 | 30 | } |
31 | 31 | } |
32 | 32 | |
33 | - public function provides () { |
|
33 | + public function provides() { |
|
34 | 34 | return [self::NAME]; |
35 | 35 | } |
36 | 36 | |
37 | - public function register () { |
|
37 | + public function register() { |
|
38 | 38 | $this->app->singleton(self::NAME, function(Application $app) { |
39 | 39 | $config = $app['config'][self::NAME]; |
40 | 40 | $pool = null; |
@@ -35,7 +35,7 @@ |
||
35 | 35 | /** |
36 | 36 | * @return string |
37 | 37 | */ |
38 | - public static function random (): string { |
|
38 | + public static function random(): string { |
|
39 | 39 | try { |
40 | 40 | $colors = (new ReflectionClass(self::class))->getConstants(); |
41 | 41 | return $colors[array_rand($colors)]; |
@@ -14,7 +14,7 @@ |
||
14 | 14 | /** |
15 | 15 | * `DELETE` |
16 | 16 | */ |
17 | - public function delete (): void { |
|
17 | + public function delete(): void { |
|
18 | 18 | $this->api->delete($this); |
19 | 19 | $this->api->getPool()->remove($this->getPoolKeys()); |
20 | 20 | } |
@@ -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 |
@@ -16,7 +16,7 @@ |
||
16 | 16 | * |
17 | 17 | * @return $this |
18 | 18 | */ |
19 | - public function update () { |
|
19 | + public function update() { |
|
20 | 20 | if ($this->isDiff()) { |
21 | 21 | /** @var array $remote */ |
22 | 22 | $remote = $this->api->put($this, $this->toArray(true), ['expand' => 'this']); |
@@ -18,7 +18,7 @@ |
||
18 | 18 | 'user' => User::class |
19 | 19 | ]; |
20 | 20 | |
21 | - protected function _setData (array $data): void { |
|
21 | + protected function _setData(array $data): void { |
|
22 | 22 | // useless. likes aren't entities. |
23 | 23 | unset($data['gid'], $data['resource_type']); |
24 | 24 |
@@ -23,7 +23,7 @@ |
||
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'], |
@@ -18,7 +18,7 @@ |
||
18 | 18 | /** |
19 | 19 | * @return CustomField[] |
20 | 20 | */ |
21 | - public function getCustomFields () { |
|
21 | + public function getCustomFields() { |
|
22 | 22 | return array_column($this->getCustomFieldSettings(), 'custom_field'); |
23 | 23 | } |
24 | 24 |
@@ -46,14 +46,14 @@ |
||
46 | 46 | /** |
47 | 47 | * @return Api |
48 | 48 | */ |
49 | - public static function getApi () { |
|
49 | + public static function getApi() { |
|
50 | 50 | return static::getFacadeRoot(); |
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |
54 | 54 | * @return string |
55 | 55 | */ |
56 | - public static function getFacadeAccessor () { |
|
56 | + public static function getFacadeAccessor() { |
|
57 | 57 | return AsanaServiceProvider::NAME; |
58 | 58 | } |
59 | 59 |