Passed
Branch master (5cd5fb)
by y
01:48
created
src/Color.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,8 +39,7 @@
 block discarded – undo
39 39
         try {
40 40
             $colors = (new ReflectionClass(self::class))->getConstants();
41 41
             return $colors[array_rand($colors)];
42
-        }
43
-        catch (Exception $exception) {
42
+        } catch (Exception $exception) {
44 43
             return 'none'; // unreachable
45 44
         }
46 45
     }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
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)];
Please login to merge, or discard this patch.
src/Api/Laravel/AsanaServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Api/FileCache.php 2 patches
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,8 +58,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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}"
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -29,30 +29,30 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Base/AbstractEntity/DeleteTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Base/AbstractEntity/UpdateTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
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']);
Please login to merge, or discard this patch.
src/Task/FieldEntry.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -160,8 +160,7 @@
 block discarded – undo
160 160
             $this->caller->__set($this->data['gid'], true);
161 161
             if ($type === CustomField::TYPE_ENUM) {
162 162
                 $this->data['enum_value']['gid'] = $this->_toEnumOptionGid($value);
163
-            }
164
-            else {
163
+            } else {
165 164
                 $this->data["{$type}_value"] = $value;
166 165
             }
167 166
         }
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      * @param Change|FieldEntries $caller
32 32
      * @param array $data
33 33
      */
34
-    public function __construct ($caller, array $data = []) {
34
+    public function __construct($caller, array $data = []) {
35 35
         $this->caller = $caller;
36 36
         parent::__construct($caller, $data);
37 37
     }
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     /**
40 40
      * @return string
41 41
      */
42
-    public function __toString (): string {
42
+    public function __toString(): string {
43 43
         if ($this->isEnum()) {
44 44
             return (string)$this->getCurrentOptionName();
45 45
         }
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      *
52 52
      * @param array $data
53 53
      */
54
-    protected function _setData (array $data): void {
54
+    protected function _setData(array $data): void {
55 55
         if (isset($data['resource_subtype'])) { // sentinel for bloat
56 56
             $tiny = array_intersect_key($data, array_flip([
57 57
                 'gid',
@@ -77,21 +77,21 @@  discard block
 block discarded – undo
77 77
      * @param null|string $value
78 78
      * @return null|string
79 79
      */
80
-    protected function _toEnumOptionGid ($value) {
80
+    protected function _toEnumOptionGid($value) {
81 81
         return $this->getEnumOptionValues()[$value] ?? $value;
82 82
     }
83 83
 
84 84
     /**
85 85
      * @return string
86 86
      */
87
-    final public function getCurrentOptionName (): string {
87
+    final public function getCurrentOptionName(): string {
88 88
         return $this->getEnumOptionNames()[$this->getValue()];
89 89
     }
90 90
 
91 91
     /**
92 92
      * @return CustomField
93 93
      */
94
-    public function getCustomField () {
94
+    public function getCustomField() {
95 95
         return $this->api->getCustomField($this->getGid());
96 96
     }
97 97
 
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      *
101 101
      * @return string[]
102 102
      */
103
-    final public function getEnumOptionNames () {
103
+    final public function getEnumOptionNames() {
104 104
         static $names = []; // shared
105 105
         $gid = $this->data['gid'];
106 106
         return $names[$gid] ?? $names[$gid] = array_column($this->data['enum_options'], 'name', 'gid');
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      *
112 112
      * @return string[]
113 113
      */
114
-    final public function getEnumOptionValues () {
114
+    final public function getEnumOptionValues() {
115 115
         static $values = []; // shared
116 116
         $gid = $this->data['gid'];
117 117
         return $values[$gid] ?? $values[$gid] = array_column($this->data['enum_options'], 'gid', 'name');
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     /**
121 121
      * @return null|number|string
122 122
      */
123
-    final public function getValue () {
123
+    final public function getValue() {
124 124
         $type = $this->data['type'];
125 125
         if ($type === CustomField::TYPE_ENUM) {
126 126
             return $this->data['enum_value']['gid'] ?? null;
@@ -131,21 +131,21 @@  discard block
 block discarded – undo
131 131
     /**
132 132
      * @return bool
133 133
      */
134
-    final public function isEnum (): bool {
134
+    final public function isEnum(): bool {
135 135
         return $this->getType() === CustomField::TYPE_ENUM;
136 136
     }
137 137
 
138 138
     /**
139 139
      * @return bool
140 140
      */
141
-    final public function isNumber (): bool {
141
+    final public function isNumber(): bool {
142 142
         return $this->getType() === CustomField::TYPE_NUMBER;
143 143
     }
144 144
 
145 145
     /**
146 146
      * @return bool
147 147
      */
148
-    final public function isText (): bool {
148
+    final public function isText(): bool {
149 149
         return $this->getType() === CustomField::TYPE_TEXT;
150 150
     }
151 151
 
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
      * @param null|number|string $value
154 154
      * @return $this
155 155
      */
156
-    final public function setValue ($value) {
156
+    final public function setValue($value) {
157 157
         if ($this->caller instanceof FieldEntries) { // read-only if the entry is in an event change.
158 158
             $type = $this->data['type'];
159 159
             $this->diff["{$type}_value"] = true;
Please login to merge, or discard this patch.
src/Task/Like.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/CustomField/FieldSetting.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
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'],
Please login to merge, or discard this patch.
src/CustomField/FieldSettingsTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.