Completed
Branch develop (caf636)
by
unknown
16:40
created
htdocs/includes/webklex/php-imap/src/Support/PaginatedCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
      * @return int|null
74 74
      */
75 75
     public function total($total = null) {
76
-        if($total === null) {
76
+        if ($total === null) {
77 77
             return $this->total;
78 78
         }
79 79
 
Please login to merge, or discard this patch.
htdocs/includes/webklex/php-imap/src/Address.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -38,11 +38,11 @@  discard block
 block discarded – undo
38 38
      * @param object   $object
39 39
      */
40 40
     public function __construct($object) {
41
-        if (property_exists($object, "personal")){ $this->personal = $object->personal; }
42
-        if (property_exists($object, "mailbox")){ $this->mailbox = $object->mailbox; }
43
-        if (property_exists($object, "host")){ $this->host = $object->host; }
44
-        if (property_exists($object, "mail")){ $this->mail = $object->mail; }
45
-        if (property_exists($object, "full")){ $this->full = $object->full; }
41
+        if (property_exists($object, "personal")) { $this->personal = $object->personal; }
42
+        if (property_exists($object, "mailbox")) { $this->mailbox = $object->mailbox; }
43
+        if (property_exists($object, "host")) { $this->host = $object->host; }
44
+        if (property_exists($object, "mail")) { $this->mail = $object->mail; }
45
+        if (property_exists($object, "full")) { $this->full = $object->full; }
46 46
     }
47 47
 
48 48
 
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      *
61 61
      * @return array
62 62
      */
63
-    public function __serialize(){
63
+    public function __serialize() {
64 64
         return [
65 65
             "personal" => $this->personal,
66 66
             "mailbox" => $this->mailbox,
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      *
76 76
      * @return array
77 77
      */
78
-    public function toArray(){
78
+    public function toArray() {
79 79
         return $this->__serialize();
80 80
     }
81 81
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      *
85 85
      * @return string
86 86
      */
87
-    public function toString(){
87
+    public function toString() {
88 88
         return $this->__toString();
89 89
     }
90 90
 }
91 91
\ No newline at end of file
Please login to merge, or discard this patch.
htdocs/includes/webklex/php-imap/src/Query/Query.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
                 break;
127 127
         }
128 128
 
129
-        return (string)$value;
129
+        return (string) $value;
130 130
     }
131 131
 
132 132
     /**
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
                 if ($statement[1] === null) {
163 163
                     $query .= $statement[0];
164 164
                 } else {
165
-                    $query .= $statement[0] . ' "' . $statement[1] . '"';
165
+                    $query .= $statement[0].' "'.$statement[1].'"';
166 166
                 }
167 167
             }
168 168
             $query .= ' ';
@@ -247,18 +247,18 @@  discard block
 block discarded – undo
247 247
      * @throws GetMessagesFailedException
248 248
      * @throws ReflectionException
249 249
      */
250
-    protected function make($uid, $msglist, $header, $content, $flags){
250
+    protected function make($uid, $msglist, $header, $content, $flags) {
251 251
         try {
252 252
             return Message::make($uid, $msglist, $this->getClient(), $header, $content, $flags, $this->getFetchOptions(), $this->sequence);
253
-        }catch (MessageNotFoundException $e) {
253
+        } catch (MessageNotFoundException $e) {
254 254
             $this->setError($uid, $e);
255
-        }catch (RuntimeException $e) {
255
+        } catch (RuntimeException $e) {
256 256
             $this->setError($uid, $e);
257
-        }catch (MessageFlagException $e) {
257
+        } catch (MessageFlagException $e) {
258 258
             $this->setError($uid, $e);
259
-        }catch (InvalidMessageDateException $e) {
259
+        } catch (InvalidMessageDateException $e) {
260 260
             $this->setError($uid, $e);
261
-        }catch (MessageContentFetchingException $e) {
261
+        } catch (MessageContentFetchingException $e) {
262 262
             $this->setError($uid, $e);
263 263
         }
264 264
 
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
      *
276 276
      * @return string
277 277
      */
278
-    protected function getMessageKey($message_key, $msglist, $message){
278
+    protected function getMessageKey($message_key, $msglist, $message) {
279 279
         switch ($message_key) {
280 280
             case 'number':
281 281
                 $key = $message->getMessageNo();
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
                 $key = $message->getMessageId();
291 291
                 break;
292 292
         }
293
-        return (string)$key;
293
+        return (string) $key;
294 294
     }
295 295
 
296 296
     /**
@@ -782,7 +782,7 @@  discard block
 block discarded – undo
782 782
      *
783 783
      * @return boolean
784 784
      */
785
-    public function hasErrors($uid = null){
785
+    public function hasErrors($uid = null) {
786 786
         if ($uid !== null) {
787 787
             return $this->hasError($uid);
788 788
         }
@@ -795,7 +795,7 @@  discard block
 block discarded – undo
795 795
      *
796 796
      * @return boolean
797 797
      */
798
-    public function hasError($uid){
798
+    public function hasError($uid) {
799 799
         return isset($this->errors[$uid]);
800 800
     }
801 801
 
@@ -804,7 +804,7 @@  discard block
 block discarded – undo
804 804
      *
805 805
      * @return array
806 806
      */
807
-    public function errors(){
807
+    public function errors() {
808 808
         return $this->getErrors();
809 809
     }
810 810
 
@@ -813,7 +813,7 @@  discard block
 block discarded – undo
813 813
      *
814 814
      * @return array
815 815
      */
816
-    public function getErrors(){
816
+    public function getErrors() {
817 817
         return $this->errors;
818 818
     }
819 819
 
@@ -823,7 +823,7 @@  discard block
 block discarded – undo
823 823
      *
824 824
      * @return Exception|null
825 825
      */
826
-    public function error($uid){
826
+    public function error($uid) {
827 827
         return $this->getError($uid);
828 828
     }
829 829
 
@@ -833,7 +833,7 @@  discard block
 block discarded – undo
833 833
      *
834 834
      * @return Exception|null
835 835
      */
836
-    public function getError($uid){
836
+    public function getError($uid) {
837 837
         if ($this->hasError($uid)) {
838 838
             return $this->errors[$uid];
839 839
         }
Please login to merge, or discard this patch.
htdocs/includes/webklex/php-imap/src/Query/WhereQuery.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         }
86 86
 
87 87
         if (strpos(strtolower($name), "where") === false) {
88
-            $method = 'where' . ucfirst($name);
88
+            $method = 'where'.ucfirst($name);
89 89
         } else {
90 90
             $method = lcfirst($name);
91 91
         }
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
             return call_user_func_array([$that, $method], $arguments);
95 95
         }
96 96
 
97
-        throw new MethodNotFoundException("Method " . self::class . '::' . $method . '() is not supported');
97
+        throw new MethodNotFoundException("Method ".self::class.'::'.$method.'() is not supported');
98 98
     }
99 99
 
100 100
     /**
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
             foreach ($criteria as $key => $value) {
139 139
                 if (is_numeric($key)) {
140 140
                     $this->where($value);
141
-                }else{
141
+                } else {
142 142
                     $this->where($key, $value);
143 143
                 }
144 144
             }
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
      *
157 157
      * @throws InvalidWhereQueryCriteriaException
158 158
      */
159
-    protected function push_search_criteria(string $criteria, $value){
159
+    protected function push_search_criteria(string $criteria, $value) {
160 160
         $criteria = $this->validate_criteria($criteria);
161 161
         $value = $this->parse_value($value);
162 162
 
@@ -540,7 +540,7 @@  discard block
 block discarded – undo
540 540
      * @return $this|mixed
541 541
      */
542 542
     public function unless($value, $callback, $default = null) {
543
-        if (! $value) {
543
+        if (!$value) {
544 544
             return $callback($this, $value) ?: $this;
545 545
         } elseif ($default) {
546 546
             return $default($this, $value) ?: $this;
Please login to merge, or discard this patch.
htdocs/includes/webklex/php-imap/src/Structure.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      * @throws MessageContentFetchingException
78 78
      * @throws InvalidMessageDateException
79 79
      */
80
-    protected function parse(){
80
+    protected function parse() {
81 81
         $this->findContentType();
82 82
         $this->parts = $this->find_parts();
83 83
     }
@@ -85,12 +85,12 @@  discard block
 block discarded – undo
85 85
     /**
86 86
      * Determine the message content type
87 87
      */
88
-    public function findContentType(){
88
+    public function findContentType() {
89 89
         $content_type = $this->header->get("content_type");
90 90
         $content_type = (is_array($content_type)) ? implode(' ', $content_type) : $content_type;
91
-        if(stripos($content_type, 'multipart') === 0) {
91
+        if (stripos($content_type, 'multipart') === 0) {
92 92
             $this->type = IMAP::MESSAGE_TYPE_MULTIPART;
93
-        }else{
93
+        } else {
94 94
             $this->type = IMAP::MESSAGE_TYPE_TEXT;
95 95
         }
96 96
     }
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      * @return Part[]
104 104
      * @throws InvalidMessageDateException
105 105
      */
106
-    private function parsePart($context, $part_number = 0){
106
+    private function parsePart($context, $part_number = 0) {
107 107
         $body = $context;
108 108
         while (($pos = strpos($body, "\r\n")) > 0) {
109 109
             $body = substr($body, $pos + 2);
@@ -126,10 +126,10 @@  discard block
 block discarded – undo
126 126
      * @return array
127 127
      * @throws InvalidMessageDateException
128 128
      */
129
-    private function detectParts($boundary, $context, $part_number = 0){
130
-        $base_parts = explode( $boundary, $context);
129
+    private function detectParts($boundary, $context, $part_number = 0) {
130
+        $base_parts = explode($boundary, $context);
131 131
         $final_parts = [];
132
-        foreach($base_parts as $ctx) {
132
+        foreach ($base_parts as $ctx) {
133 133
             $ctx = substr($ctx, 2);
134 134
             if ($ctx !== "--" && $ctx != "") {
135 135
                 $parts = $this->parsePart($ctx, $part_number);
@@ -150,9 +150,9 @@  discard block
 block discarded – undo
150 150
      * @throws MessageContentFetchingException
151 151
      * @throws InvalidMessageDateException
152 152
      */
153
-    public function find_parts(){
154
-        if($this->type === IMAP::MESSAGE_TYPE_MULTIPART) {
155
-            if (($boundary = $this->header->getBoundary()) === null)  {
153
+    public function find_parts() {
154
+        if ($this->type === IMAP::MESSAGE_TYPE_MULTIPART) {
155
+            if (($boundary = $this->header->getBoundary()) === null) {
156 156
                 throw new MessageContentFetchingException("no content found", 0);
157 157
             }
158 158
 
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
      * @return string|null
169 169
      * @Depricated since version 2.4.4
170 170
      */
171
-    public function getBoundary(){
171
+    public function getBoundary() {
172 172
         return $this->header->getBoundary();
173 173
     }
174 174
 }
Please login to merge, or discard this patch.
htdocs/includes/webklex/php-imap/src/Part.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -159,10 +159,10 @@  discard block
 block discarded – undo
159 159
      *
160 160
      * @throws InvalidMessageDateException
161 161
      */
162
-    protected function parse(){
162
+    protected function parse() {
163 163
         if ($this->header === null) {
164 164
             $body = $this->findHeaders();
165
-        }else{
165
+        } else {
166 166
             $body = $this->raw;
167 167
         }
168 168
 
@@ -174,11 +174,11 @@  discard block
 block discarded – undo
174 174
         $this->name = $this->header->get("name");
175 175
         $this->filename = $this->header->get("filename");
176 176
 
177
-        if(!empty($this->header->get("id"))) {
177
+        if (!empty($this->header->get("id"))) {
178 178
             $this->id = $this->header->get("id");
179
-        } else if(!empty($this->header->get("x_attachment_id"))){
179
+        } else if (!empty($this->header->get("x_attachment_id"))) {
180 180
             $this->id = $this->header->get("x_attachment_id");
181
-        } else if(!empty($this->header->get("content_id"))){
181
+        } else if (!empty($this->header->get("content_id"))) {
182 182
             $this->id = strtr($this->header->get("content_id"), [
183 183
                 '<' => '',
184 184
                 '>' => ''
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         }
187 187
 
188 188
         $content_types = $this->header->get("content_type");
189
-        if(!empty($content_types)){
189
+        if (!empty($content_types)) {
190 190
             $this->subtype = $this->parseSubtype($content_types);
191 191
             $content_type = $content_types;
192 192
             if (is_array($content_types)) {
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
      * @return string
208 208
      * @throws InvalidMessageDateException
209 209
      */
210
-    private function findHeaders(){
210
+    private function findHeaders() {
211 211
         $body = $this->raw;
212 212
         while (($pos = strpos($body, "\r\n")) > 0) {
213 213
             $body = substr($body, $pos + 2);
@@ -226,16 +226,16 @@  discard block
 block discarded – undo
226 226
      *
227 227
      * @return string
228 228
      */
229
-    private function parseSubtype($content_type){
229
+    private function parseSubtype($content_type) {
230 230
         if (is_array($content_type)) {
231
-            foreach ($content_type as $part){
232
-                if ((strpos($part, "/")) !== false){
231
+            foreach ($content_type as $part) {
232
+                if ((strpos($part, "/")) !== false) {
233 233
                     return $this->parseSubtype($part);
234 234
                 }
235 235
             }
236 236
             return null;
237 237
         }
238
-        if (($pos = strpos($content_type, "/")) !== false){
238
+        if (($pos = strpos($content_type, "/")) !== false) {
239 239
             return substr($content_type, $pos + 1);
240 240
         }
241 241
         return null;
@@ -244,9 +244,9 @@  discard block
 block discarded – undo
244 244
     /**
245 245
      * Try to parse the disposition if any is present
246 246
      */
247
-    private function parseDisposition(){
247
+    private function parseDisposition() {
248 248
         $content_disposition = $this->header->get("content_disposition");
249
-        if($content_disposition !== null) {
249
+        if ($content_disposition !== null) {
250 250
             $this->ifdisposition = true;
251 251
             $this->disposition = (is_array($content_disposition)) ? implode(' ', $content_disposition) : $content_disposition;
252 252
         }
@@ -255,9 +255,9 @@  discard block
 block discarded – undo
255 255
     /**
256 256
      * Try to parse the description if any is present
257 257
      */
258
-    private function parseDescription(){
258
+    private function parseDescription() {
259 259
         $content_description = $this->header->get("content_description");
260
-        if($content_description !== null) {
260
+        if ($content_description !== null) {
261 261
             $this->ifdescription = true;
262 262
             $this->description = $content_description;
263 263
         }
@@ -266,9 +266,9 @@  discard block
 block discarded – undo
266 266
     /**
267 267
      * Try to parse the encoding if any is present
268 268
      */
269
-    private function parseEncoding(){
269
+    private function parseEncoding() {
270 270
         $encoding = $this->header->get("content_transfer_encoding");
271
-        if($encoding !== null) {
271
+        if ($encoding !== null) {
272 272
             switch (strtolower($encoding)) {
273 273
                 case "quoted-printable":
274 274
                     $this->encoding = IMAP::MESSAGE_ENC_QUOTED_PRINTABLE;
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
      *
299 299
      * @return bool
300 300
      */
301
-    public function isAttachment(){
301
+    public function isAttachment() {
302 302
         $valid_disposition = in_array(strtolower($this->disposition), ClientManager::get('options.dispositions'));
303 303
 
304 304
         if ($this->type == IMAP::MESSAGE_TYPE_TEXT && ($this->ifdisposition == 0 || (empty($this->disposition))) && !$valid_disposition) {
Please login to merge, or discard this patch.
htdocs/includes/webklex/php-imap/src/ClientManager.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -76,17 +76,17 @@  discard block
 block discarded – undo
76 76
     public static function get($key, $default = null) {
77 77
         $parts = explode('.', $key);
78 78
         $value = null;
79
-        foreach($parts as $part) {
80
-            if($value === null) {
81
-                if(isset(self::$config[$part])) {
79
+        foreach ($parts as $part) {
80
+            if ($value === null) {
81
+                if (isset(self::$config[$part])) {
82 82
                     $value = self::$config[$part];
83
-                }else{
83
+                } else {
84 84
                     break;
85 85
                 }
86
-            }else{
87
-                if(isset($value[$part])) {
86
+            } else {
87
+                if (isset($value[$part])) {
88 88
                     $value = $value[$part];
89
-                }else{
89
+                } else {
90 90
                     break;
91 91
                 }
92 92
             }
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
      */
177 177
     public function setConfig($config) {
178 178
 
179
-        if(is_array($config) === false) {
179
+        if (is_array($config) === false) {
180 180
             $config = require $config;
181 181
         }
182 182
 
@@ -186,17 +186,17 @@  discard block
 block discarded – undo
186 186
         $vendor_config = require $path;
187 187
         $config = $this->array_merge_recursive_distinct($vendor_config, $config);
188 188
 
189
-        if(is_array($config)){
190
-            if(isset($config['default'])){
191
-                if(isset($config['accounts']) && $config['default'] != false){
189
+        if (is_array($config)) {
190
+            if (isset($config['default'])) {
191
+                if (isset($config['accounts']) && $config['default'] != false) {
192 192
 
193 193
                     $default_config = $vendor_config['accounts']['default'];
194
-                    if(isset($config['accounts'][$config['default']])){
194
+                    if (isset($config['accounts'][$config['default']])) {
195 195
                         $default_config = array_merge($default_config, $config['accounts'][$config['default']]);
196 196
                     }
197 197
 
198
-                    if(is_array($config['accounts'])){
199
-                        foreach($config['accounts'] as $account_key => $account){
198
+                    if (is_array($config['accounts'])) {
199
+                        foreach ($config['accounts'] as $account_key => $account) {
200 200
                             $config['accounts'][$account_key] = array_merge($default_config, $account);
201 201
                         }
202 202
                     }
@@ -232,23 +232,23 @@  discard block
 block discarded – undo
232 232
         $arrays = func_get_args();
233 233
         $base = array_shift($arrays);
234 234
 
235
-        if(!is_array($base)) $base = empty($base) ? array() : array($base);
235
+        if (!is_array($base)) $base = empty($base) ? array() : array($base);
236 236
 
237
-        foreach($arrays as $append) {
237
+        foreach ($arrays as $append) {
238 238
 
239
-            if(!is_array($append)) $append = array($append);
239
+            if (!is_array($append)) $append = array($append);
240 240
 
241
-            foreach($append as $key => $value) {
241
+            foreach ($append as $key => $value) {
242 242
 
243
-                if(!array_key_exists($key, $base) and !is_numeric($key)) {
243
+                if (!array_key_exists($key, $base) and !is_numeric($key)) {
244 244
                     $base[$key] = $append[$key];
245 245
                     continue;
246 246
                 }
247 247
 
248
-                if(is_array($value) or is_array($base[$key])) {
248
+                if (is_array($value) or is_array($base[$key])) {
249 249
                     $base[$key] = $this->array_merge_recursive_distinct($base[$key], $append[$key]);
250
-                } else if(is_numeric($key)) {
251
-                    if(!in_array($value, $base)) $base[] = $value;
250
+                } else if (is_numeric($key)) {
251
+                    if (!in_array($value, $base)) $base[] = $value;
252 252
                 } else {
253 253
                     $base[$key] = $value;
254 254
                 }
Please login to merge, or discard this patch.
htdocs/includes/webklex/php-imap/src/Header.php 1 patch
Spacing   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -82,10 +82,10 @@  discard block
 block discarded – undo
82 82
      * @throws MethodNotFoundException
83 83
      */
84 84
     public function __call($method, $arguments) {
85
-        if(strtolower(substr($method, 0, 3)) === 'get') {
85
+        if (strtolower(substr($method, 0, 3)) === 'get') {
86 86
             $name = preg_replace('/(.)(?=[A-Z])/u', '$1_', substr(strtolower($method), 3));
87 87
 
88
-            if(in_array($name, array_keys($this->attributes))) {
88
+            if (in_array($name, array_keys($this->attributes))) {
89 89
                 return $this->attributes[$name];
90 90
             }
91 91
 
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      * @return Attribute|mixed
112 112
      */
113 113
     public function get($name) {
114
-        if(isset($this->attributes[$name])) {
114
+        if (isset($this->attributes[$name])) {
115 115
             return $this->attributes[$name];
116 116
         }
117 117
 
@@ -127,23 +127,23 @@  discard block
 block discarded – undo
127 127
      * @return Attribute
128 128
      */
129 129
     public function set($name, $value, $strict = false) {
130
-        if(isset($this->attributes[$name]) && $strict === false) {
130
+        if (isset($this->attributes[$name]) && $strict === false) {
131 131
             if ($this->attributize) {
132 132
                 $this->attributes[$name]->add($value, true);
133
-            }else{
134
-                if(isset($this->attributes[$name])) {
133
+            } else {
134
+                if (isset($this->attributes[$name])) {
135 135
                     if (is_array($this->attributes[$name]) == false) {
136 136
                         $this->attributes[$name] = [$this->attributes[$name], $value];
137
-                    }else{
137
+                    } else {
138 138
                         $this->attributes[$name][] = $value;
139 139
                     }
140
-                }else{
140
+                } else {
141 141
                     $this->attributes[$name] = $value;
142 142
                 }
143 143
             }
144
-        }elseif($this->attributize == false){
144
+        }elseif ($this->attributize == false) {
145 145
             $this->attributes[$name] = $value;
146
-        }else{
146
+        } else {
147 147
             $this->attributes[$name] = new Attribute($name, $value);
148 148
         }
149 149
 
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
     public function find($pattern) {
160 160
         if (preg_match_all($pattern, $this->raw, $matches)) {
161 161
             if (isset($matches[1])) {
162
-                if(count($matches[1]) > 0) {
162
+                if (count($matches[1]) > 0) {
163 163
                     return $matches[1][0];
164 164
                 }
165 165
             }
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
      *
173 173
      * @return string|null
174 174
      */
175
-    public function getBoundary(){
175
+    public function getBoundary() {
176 176
         $boundary = $this->find("/boundary\=(.*)/i");
177 177
 
178 178
         if ($boundary === null) {
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
      *
198 198
      * @throws InvalidMessageDateException
199 199
      */
200
-    protected function parse(){
200
+    protected function parse() {
201 201
         $header = $this->rfc822_parse_headers($this->raw);
202 202
 
203 203
         $this->extractAddresses($header);
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
         $this->parseDate($header);
216 216
         foreach ($header as $key => $value) {
217 217
             $key = trim(rtrim(strtolower($key)));
218
-            if(!isset($this->attributes[$key])){
218
+            if (!isset($this->attributes[$key])) {
219 219
                 $this->set($key, $value);
220 220
             }
221 221
         }
@@ -231,19 +231,19 @@  discard block
 block discarded – undo
231 231
      *
232 232
      * @return object
233 233
      */
234
-    public function rfc822_parse_headers($raw_headers){
234
+    public function rfc822_parse_headers($raw_headers) {
235 235
         $headers = [];
236 236
         $imap_headers = [];
237 237
         if (extension_loaded('imap') && $this->config["rfc822"]) {
238 238
             $raw_imap_headers = (array) \imap_rfc822_parse_headers($this->raw);
239
-            foreach($raw_imap_headers as $key => $values) {
239
+            foreach ($raw_imap_headers as $key => $values) {
240 240
                 $key = str_replace("-", "_", $key);
241 241
                 $imap_headers[$key] = $values;
242 242
             }
243 243
         }
244 244
         $lines = explode("\r\n", str_replace("\r\n\t", ' ', $raw_headers));
245 245
         $prev_header = null;
246
-        foreach($lines as $line) {
246
+        foreach ($lines as $line) {
247 247
             if (substr($line, 0, 1) === "\n") {
248 248
                 $line = substr($line, 1);
249 249
             }
@@ -263,19 +263,19 @@  discard block
 block discarded – undo
263 263
                     }
264 264
                     if (is_array($headers[$prev_header])) {
265 265
                         $headers[$prev_header][] = $line;
266
-                    }else{
266
+                    } else {
267 267
                         $headers[$prev_header] .= $line;
268 268
                     }
269 269
                 }
270
-            }else{
270
+            } else {
271 271
                 if (($pos = strpos($line, ":")) > 0) {
272 272
                     $key = trim(rtrim(strtolower(substr($line, 0, $pos))));
273 273
                     $key = str_replace("-", "_", $key);
274 274
 
275 275
                     $value = trim(rtrim(substr($line, $pos + 1)));
276 276
                     if (isset($headers[$key])) {
277
-                        $headers[$key][]  = $value;
278
-                    }else{
277
+                        $headers[$key][] = $value;
278
+                    } else {
279 279
                         $headers[$key] = [$value];
280 280
                     }
281 281
                     $prev_header = $key;
@@ -283,10 +283,10 @@  discard block
 block discarded – undo
283 283
             }
284 284
         }
285 285
 
286
-        foreach($headers as $key => $values) {
286
+        foreach ($headers as $key => $values) {
287 287
             if (isset($imap_headers[$key])) continue;
288 288
             $value = null;
289
-            switch($key){
289
+            switch ($key) {
290 290
                 case 'from':
291 291
                 case 'to':
292 292
                 case 'cc':
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
                     break;
302 302
                 default:
303 303
                     if (is_array($values)) {
304
-                        foreach($values as $k => $v) {
304
+                        foreach ($values as $k => $v) {
305 305
                             if ($v == "") {
306 306
                                 unset($values[$k]);
307 307
                             }
@@ -333,12 +333,12 @@  discard block
 block discarded – undo
333 333
      * @return array The decoded elements are returned in an array of objects, where each
334 334
      * object has two properties, charset and text.
335 335
      */
336
-    public function mime_header_decode($text){
336
+    public function mime_header_decode($text) {
337 337
         if (extension_loaded('imap')) {
338 338
             return \imap_mime_header_decode($text);
339 339
         }
340 340
         $charset = $this->getEncoding($text);
341
-        return [(object)[
341
+        return [(object) [
342 342
             "charset" => $charset,
343 343
             "text" => $this->convertEncoding($text, $charset)
344 344
         ]];
@@ -423,7 +423,7 @@  discard block
 block discarded – undo
423 423
             }
424 424
         }elseif (property_exists($structure, 'charset')) {
425 425
             return EncodingAliases::get($structure->charset, $this->fallback_encoding);
426
-        }elseif (is_string($structure) === true){
426
+        }elseif (is_string($structure) === true) {
427 427
             return mb_detect_encoding($structure);
428 428
         }
429 429
 
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
         if ($value !== null) {
457 457
             $is_utf8_base = $this->is_uft8($value);
458 458
 
459
-            if($decoder === 'utf-8' && extension_loaded('imap')) {
459
+            if ($decoder === 'utf-8' && extension_loaded('imap')) {
460 460
                 $value = \imap_utf8($value);
461 461
                 $is_utf8_base = $this->is_uft8($value);
462 462
                 if ($is_utf8_base) {
@@ -465,14 +465,14 @@  discard block
 block discarded – undo
465 465
                 if ($this->notDecoded($original_value, $value)) {
466 466
                     $decoded_value = $this->mime_header_decode($value);
467 467
                     if (count($decoded_value) > 0) {
468
-                        if(property_exists($decoded_value[0], "text")) {
468
+                        if (property_exists($decoded_value[0], "text")) {
469 469
                             $value = $decoded_value[0]->text;
470 470
                         }
471 471
                     }
472 472
                 }
473
-            }elseif($decoder === 'iconv' && $is_utf8_base) {
473
+            }elseif ($decoder === 'iconv' && $is_utf8_base) {
474 474
                 $value = iconv_mime_decode($value);
475
-            }elseif($is_utf8_base){
475
+            }elseif ($is_utf8_base) {
476 476
                 $value = mb_decode_mimeheader($value);
477 477
             }
478 478
 
@@ -495,7 +495,7 @@  discard block
 block discarded – undo
495 495
      * @return array
496 496
      */
497 497
     private function decodeArray($values) {
498
-        foreach($values as $key => $value) {
498
+        foreach ($values as $key => $value) {
499 499
             $values[$key] = $this->decode($value);
500 500
         }
501 501
         return $values;
@@ -505,8 +505,8 @@  discard block
 block discarded – undo
505 505
      * Try to extract the priority from a given raw header string
506 506
      */
507 507
     private function findPriority() {
508
-        if(($priority = $this->get("x_priority")) === null) return;
509
-        switch((int)"$priority"){
508
+        if (($priority = $this->get("x_priority")) === null) return;
509
+        switch ((int) "$priority") {
510 510
             case IMAP::MESSAGE_PRIORITY_HIGHEST;
511 511
                 $priority = IMAP::MESSAGE_PRIORITY_HIGHEST;
512 512
                 break;
@@ -545,7 +545,7 @@  discard block
 block discarded – undo
545 545
                     if (isset($parsed_address['address'])) {
546 546
                         $mail_address = explode('@', $parsed_address['address']);
547 547
                         if (count($mail_address) == 2) {
548
-                            $addresses[] = (object)[
548
+                            $addresses[] = (object) [
549 549
                                 "personal" => isset($parsed_address['display']) ? $parsed_address['display'] : '',
550 550
                                 "mailbox" => $mail_address[0],
551 551
                                 "host" => $mail_address[1],
@@ -558,7 +558,7 @@  discard block
 block discarded – undo
558 558
             return $addresses;
559 559
         }
560 560
 
561
-        foreach($values as $address) {
561
+        foreach ($values as $address) {
562 562
             foreach (preg_split('/, (?=(?:[^"]*"[^"]*")*[^"]*$)/', $address) as $split_address) {
563 563
                 $split_address = trim(rtrim($split_address));
564 564
 
@@ -573,7 +573,7 @@  discard block
 block discarded – undo
573 573
                     $name = trim(rtrim($matches["name"]));
574 574
                     $email = trim(rtrim($matches["email"]));
575 575
                     list($mailbox, $host) = array_pad(explode("@", $email), 2, null);
576
-                    $addresses[] = (object)[
576
+                    $addresses[] = (object) [
577 577
                         "personal" => $name,
578 578
                         "mailbox" => $mailbox,
579 579
                         "host" => $host,
@@ -590,7 +590,7 @@  discard block
 block discarded – undo
590 590
      * @param object $header
591 591
      */
592 592
     private function extractAddresses($header) {
593
-        foreach(['from', 'to', 'cc', 'bcc', 'reply_to', 'sender'] as $key){
593
+        foreach (['from', 'to', 'cc', 'bcc', 'reply_to', 'sender'] as $key) {
594 594
             if (property_exists($header, $key)) {
595 595
                 $this->set($key, $this->parseAddresses($header->$key));
596 596
             }
@@ -624,7 +624,7 @@  discard block
 block discarded – undo
624 624
             } else {
625 625
                 $personalParts = $this->mime_header_decode($address->personal);
626 626
 
627
-                if(is_array($personalParts)) {
627
+                if (is_array($personalParts)) {
628 628
                     $address->personal = '';
629 629
                     foreach ($personalParts as $p) {
630 630
                         $address->personal .= $this->convertEncoding($p->text, $this->getEncoding($p));
@@ -648,23 +648,23 @@  discard block
 block discarded – undo
648 648
     /**
649 649
      * Search and extract potential header extensions
650 650
      */
651
-    private function extractHeaderExtensions(){
651
+    private function extractHeaderExtensions() {
652 652
         foreach ($this->attributes as $key => $value) {
653 653
             if (is_array($value)) {
654 654
                 $value = implode(", ", $value);
655
-            }else{
656
-                $value = (string)$value;
655
+            } else {
656
+                $value = (string) $value;
657 657
             }
658 658
             // Only parse strings and don't parse any attributes like the user-agent
659 659
             if (in_array($key, ["user_agent"]) === false) {
660
-                if (($pos = strpos($value, ";")) !== false){
660
+                if (($pos = strpos($value, ";")) !== false) {
661 661
                     $original = substr($value, 0, $pos);
662 662
                     $this->set($key, trim(rtrim($original)), true);
663 663
 
664 664
                     // Get all potential extensions
665 665
                     $extensions = explode(";", substr($value, $pos + 1));
666
-                    foreach($extensions as $extension) {
667
-                        if (($pos = strpos($extension, "=")) !== false){
666
+                    foreach ($extensions as $extension) {
667
+                        if (($pos = strpos($extension, "=")) !== false) {
668 668
                             $key = substr($extension, 0, $pos);
669 669
                             $key = trim(rtrim(strtolower($key)));
670 670
 
@@ -707,7 +707,7 @@  discard block
 block discarded – undo
707 707
             $parsed_date = null;
708 708
             $date = $header->date;
709 709
 
710
-            if(preg_match('/\+0580/', $date)) {
710
+            if (preg_match('/\+0580/', $date)) {
711 711
                 $date = str_replace('+0580', '+0530', $date);
712 712
             }
713 713
 
@@ -730,7 +730,7 @@  discard block
 block discarded – undo
730 730
                         $date = trim(array_pop($array));
731 731
                         break;
732 732
                 }
733
-                try{
733
+                try {
734 734
                     $parsed_date = Carbon::parse($date);
735 735
                 } catch (\Exception $_e) {
736 736
                     throw new InvalidMessageDateException("Invalid message date. ID:".$this->get("message_id"), 1100, $e);
Please login to merge, or discard this patch.
htdocs/includes/webklex/php-imap/src/Message.php 1 patch
Spacing   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
         $this->boot();
193 193
 
194 194
         $default_mask = $client->getDefaultMessageMask();
195
-        if($default_mask != null) {
195
+        if ($default_mask != null) {
196 196
             $this->mask = $default_mask;
197 197
         }
198 198
         $this->events["message"] = $client->getDefaultEvents("message");
@@ -246,14 +246,14 @@  discard block
 block discarded – undo
246 246
      * @throws Exceptions\RuntimeException
247 247
      * @throws Exceptions\MessageNotFoundException
248 248
      */
249
-    public static function make($uid, $msglist, Client $client, $raw_header, $raw_body, $raw_flags, $fetch_options = null, $sequence = null){
249
+    public static function make($uid, $msglist, Client $client, $raw_header, $raw_body, $raw_flags, $fetch_options = null, $sequence = null) {
250 250
         $reflection = new ReflectionClass(self::class);
251 251
         /** @var self $instance */
252 252
         $instance = $reflection->newInstanceWithoutConstructor();
253 253
         $instance->boot();
254 254
 
255 255
         $default_mask = $client->getDefaultMessageMask();
256
-        if($default_mask != null) {
256
+        if ($default_mask != null) {
257 257
             $instance->setMask($default_mask);
258 258
         }
259 259
         $instance->setEvents([
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
     /**
279 279
      * Boot a new instance
280 280
      */
281
-    public function boot(){
281
+    public function boot() {
282 282
         $this->attributes = [];
283 283
 
284 284
         $this->config = ClientManager::get('options');
@@ -297,13 +297,13 @@  discard block
 block discarded – undo
297 297
      * @throws MethodNotFoundException
298 298
      */
299 299
     public function __call($method, $arguments) {
300
-        if(strtolower(substr($method, 0, 3)) === 'get') {
300
+        if (strtolower(substr($method, 0, 3)) === 'get') {
301 301
             $name = Str::snake(substr($method, 3));
302 302
             return $this->get($name);
303 303
         }elseif (strtolower(substr($method, 0, 3)) === 'set') {
304 304
             $name = Str::snake(substr($method, 3));
305 305
 
306
-            if(in_array($name, array_keys($this->attributes))) {
306
+            if (in_array($name, array_keys($this->attributes))) {
307 307
                 return $this->__set($name, array_pop($arguments));
308 308
             }
309 309
 
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
      * @return Attribute|mixed|null
343 343
      */
344 344
     public function get($name) {
345
-        if(isset($this->attributes[$name])) {
345
+        if (isset($this->attributes[$name])) {
346 346
             return $this->attributes[$name];
347 347
         }
348 348
 
@@ -416,7 +416,7 @@  discard block
 block discarded – undo
416 416
      *
417 417
      * @throws InvalidMessageDateException
418 418
      */
419
-    public function parseRawHeader($raw_header){
419
+    public function parseRawHeader($raw_header) {
420 420
         $this->header = new Header($raw_header);
421 421
     }
422 422
 
@@ -427,8 +427,8 @@  discard block
 block discarded – undo
427 427
     public function parseRawFlags($raw_flags) {
428 428
         $this->flags = FlagCollection::make([]);
429 429
 
430
-        foreach($raw_flags as $flag) {
431
-            if (strpos($flag, "\\") === 0){
430
+        foreach ($raw_flags as $flag) {
431
+            if (strpos($flag, "\\") === 0) {
432 432
                 $flag = substr($flag, 1);
433 433
             }
434 434
             $flag_key = strtolower($flag);
@@ -501,7 +501,7 @@  discard block
 block discarded – undo
501 501
      * @throws MessageFlagException
502 502
      * @throws Exceptions\RuntimeException
503 503
      */
504
-    public function peek(){
504
+    public function peek() {
505 505
         if ($this->fetch_options == IMAP::FT_PEEK) {
506 506
             if ($this->getFlags()->get("seen") == null) {
507 507
                 $this->unsetFlag("Seen");
@@ -550,7 +550,7 @@  discard block
 block discarded – undo
550 550
     private function fetchPart(Part $part) {
551 551
         if ($part->isAttachment()) {
552 552
             $this->fetchAttachment($part);
553
-        }else{
553
+        } else {
554 554
             $encoding = $this->getEncoding($part);
555 555
 
556 556
             $content = $this->decodeString($part->content, $part->encoding);
@@ -575,7 +575,7 @@  discard block
 block discarded – undo
575 575
 
576 576
             if (isset($this->bodies[$subtype])) {
577 577
                 $this->bodies[$subtype] .= "\n".$content;
578
-            }else{
578
+            } else {
579 579
                 $this->bodies[$subtype] = $content;
580 580
             }
581 581
         }
@@ -746,9 +746,9 @@  discard block
 block discarded – undo
746 746
                     return EncodingAliases::get($parameter->value);
747 747
                 }
748 748
             }
749
-        }elseif (property_exists($structure, 'charset')){
749
+        }elseif (property_exists($structure, 'charset')) {
750 750
             return EncodingAliases::get($structure->charset);
751
-        }elseif (is_string($structure) === true){
751
+        }elseif (is_string($structure) === true) {
752 752
             return mb_detect_encoding($structure);
753 753
         }
754 754
 
@@ -763,7 +763,7 @@  discard block
 block discarded – undo
763 763
      * @throws Exceptions\FolderFetchingException
764 764
      * @throws Exceptions\RuntimeException
765 765
      */
766
-    public function getFolder(){
766
+    public function getFolder() {
767 767
         return $this->client->getFolderByPath($this->folder_path);
768 768
     }
769 769
 
@@ -779,13 +779,13 @@  discard block
 block discarded – undo
779 779
      * @throws Exceptions\GetMessagesFailedException
780 780
      * @throws Exceptions\RuntimeException
781 781
      */
782
-    public function thread($sent_folder = null, &$thread = null, $folder = null){
782
+    public function thread($sent_folder = null, &$thread = null, $folder = null) {
783 783
         $thread = $thread ? $thread : MessageCollection::make([]);
784
-        $folder = $folder ? $folder :  $this->getFolder();
784
+        $folder = $folder ? $folder : $this->getFolder();
785 785
         $sent_folder = $sent_folder ? $sent_folder : $this->client->getFolderByPath(ClientManager::get("options.common_folders.sent", "INBOX/Sent"));
786 786
 
787 787
         /** @var Message $message */
788
-        foreach($thread as $message) {
788
+        foreach ($thread as $message) {
789 789
             if ($message->message_id->first() == $this->message_id->first()) {
790 790
                 return $thread;
791 791
             }
@@ -796,7 +796,7 @@  discard block
 block discarded – undo
796 796
         $this->fetchThreadByInReplyTo($thread, $this->message_id, $sent_folder, $folder, $sent_folder);
797 797
 
798 798
         if (is_array($this->in_reply_to)) {
799
-            foreach($this->in_reply_to as $in_reply_to) {
799
+            foreach ($this->in_reply_to as $in_reply_to) {
800 800
                 $this->fetchThreadByMessageId($thread, $in_reply_to, $folder, $folder, $sent_folder);
801 801
                 $this->fetchThreadByMessageId($thread, $in_reply_to, $sent_folder, $folder, $sent_folder);
802 802
             }
@@ -817,7 +817,7 @@  discard block
 block discarded – undo
817 817
      * @throws Exceptions\GetMessagesFailedException
818 818
      * @throws Exceptions\RuntimeException
819 819
      */
820
-    protected function fetchThreadByInReplyTo(&$thread, $in_reply_to, $primary_folder, $secondary_folder, $sent_folder){
820
+    protected function fetchThreadByInReplyTo(&$thread, $in_reply_to, $primary_folder, $secondary_folder, $sent_folder) {
821 821
         $primary_folder->query()->inReplyTo($in_reply_to)
822 822
         ->setFetchBody($this->getFetchBodyOption())
823 823
         ->leaveUnread()->get()->each(function($message) use(&$thread, $secondary_folder, $sent_folder){
@@ -838,7 +838,7 @@  discard block
 block discarded – undo
838 838
      * @throws Exceptions\GetMessagesFailedException
839 839
      * @throws Exceptions\RuntimeException
840 840
      */
841
-    protected function fetchThreadByMessageId(&$thread, $message_id, $primary_folder, $secondary_folder, $sent_folder){
841
+    protected function fetchThreadByMessageId(&$thread, $message_id, $primary_folder, $secondary_folder, $sent_folder) {
842 842
         $primary_folder->query()->messageId($message_id)
843 843
         ->setFetchBody($this->getFetchBodyOption())
844 844
         ->leaveUnread()->get()->each(function($message) use(&$thread, $secondary_folder, $sent_folder){
@@ -934,14 +934,14 @@  discard block
 block discarded – undo
934 934
      * @throws MessageFlagException
935 935
      * @throws MessageHeaderFetchingException
936 936
      */
937
-    protected function fetchNewMail($folder, $next_uid, $event, $expunge){
938
-        if($expunge) $this->client->expunge();
937
+    protected function fetchNewMail($folder, $next_uid, $event, $expunge) {
938
+        if ($expunge) $this->client->expunge();
939 939
 
940 940
         $this->client->openFolder($folder->path);
941 941
 
942 942
         if ($this->sequence === IMAP::ST_UID) {
943 943
             $sequence_id = $next_uid;
944
-        }else{
944
+        } else {
945 945
             $sequence_id = $this->client->getConnection()->getMessageNumber($next_uid);
946 946
         }
947 947
 
@@ -964,7 +964,7 @@  discard block
 block discarded – undo
964 964
      */
965 965
     public function delete($expunge = true) {
966 966
         $status = $this->setFlag("Deleted");
967
-        if($expunge) $this->client->expunge();
967
+        if ($expunge) $this->client->expunge();
968 968
 
969 969
         $event = $this->getEvent("message", "deleted");
970 970
         $event::dispatch($this);
@@ -984,7 +984,7 @@  discard block
 block discarded – undo
984 984
      */
985 985
     public function restore($expunge = true) {
986 986
         $status = $this->unsetFlag("Deleted");
987
-        if($expunge) $this->client->expunge();
987
+        if ($expunge) $this->client->expunge();
988 988
 
989 989
         $event = $this->getEvent("message", "restored");
990 990
         $event::dispatch($this);
@@ -1089,7 +1089,7 @@  discard block
 block discarded – undo
1089 1089
      *
1090 1090
      * @return AttachmentCollection
1091 1091
      */
1092
-    public function attachments(){
1092
+    public function attachments() {
1093 1093
         return $this->getAttachments();
1094 1094
     }
1095 1095
 
@@ -1187,7 +1187,7 @@  discard block
 block discarded – undo
1187 1187
      *
1188 1188
      * @return FlagCollection
1189 1189
      */
1190
-    public function flags(){
1190
+    public function flags() {
1191 1191
         return $this->getFlags();
1192 1192
     }
1193 1193
 
@@ -1196,7 +1196,7 @@  discard block
 block discarded – undo
1196 1196
      *
1197 1197
      * @return Structure|null
1198 1198
      */
1199
-    public function getStructure(){
1199
+    public function getStructure() {
1200 1200
         return $this->structure;
1201 1201
     }
1202 1202
 
@@ -1222,7 +1222,7 @@  discard block
 block discarded – undo
1222 1222
      *
1223 1223
      * @return array
1224 1224
      */
1225
-    public function getAttributes(){
1225
+    public function getAttributes() {
1226 1226
         return array_merge($this->attributes, $this->header->getAttributes());
1227 1227
     }
1228 1228
 
@@ -1232,8 +1232,8 @@  discard block
 block discarded – undo
1232 1232
      *
1233 1233
      * @return $this
1234 1234
      */
1235
-    public function setMask($mask){
1236
-        if(class_exists($mask)){
1235
+    public function setMask($mask) {
1236
+        if (class_exists($mask)) {
1237 1237
             $this->mask = $mask;
1238 1238
         }
1239 1239
 
@@ -1245,7 +1245,7 @@  discard block
 block discarded – undo
1245 1245
      *
1246 1246
      * @return string
1247 1247
      */
1248
-    public function getMask(){
1248
+    public function getMask() {
1249 1249
         return $this->mask;
1250 1250
     }
1251 1251
 
@@ -1256,9 +1256,9 @@  discard block
 block discarded – undo
1256 1256
      * @return mixed
1257 1257
      * @throws MaskNotFoundException
1258 1258
      */
1259
-    public function mask($mask = null){
1259
+    public function mask($mask = null) {
1260 1260
         $mask = $mask !== null ? $mask : $this->mask;
1261
-        if(class_exists($mask)){
1261
+        if (class_exists($mask)) {
1262 1262
             return new $mask($this);
1263 1263
         }
1264 1264
 
@@ -1270,7 +1270,7 @@  discard block
 block discarded – undo
1270 1270
      *
1271 1271
      * @return string
1272 1272
      */
1273
-    public function getFolderPath(){
1273
+    public function getFolderPath() {
1274 1274
         return $this->folder_path;
1275 1275
     }
1276 1276
 
@@ -1280,7 +1280,7 @@  discard block
 block discarded – undo
1280 1280
      *
1281 1281
      * @return $this
1282 1282
      */
1283
-    public function setFolderPath($folder_path){
1283
+    public function setFolderPath($folder_path) {
1284 1284
         $this->folder_path = $folder_path;
1285 1285
 
1286 1286
         return $this;
@@ -1292,7 +1292,7 @@  discard block
 block discarded – undo
1292 1292
      *
1293 1293
      * @return $this
1294 1294
      */
1295
-    public function setConfig($config){
1295
+    public function setConfig($config) {
1296 1296
         $this->config = $config;
1297 1297
 
1298 1298
         return $this;
@@ -1304,7 +1304,7 @@  discard block
 block discarded – undo
1304 1304
      *
1305 1305
      * @return $this
1306 1306
      */
1307
-    public function setAvailableFlags($available_flags){
1307
+    public function setAvailableFlags($available_flags) {
1308 1308
         $this->available_flags = $available_flags;
1309 1309
 
1310 1310
         return $this;
@@ -1316,7 +1316,7 @@  discard block
 block discarded – undo
1316 1316
      *
1317 1317
      * @return $this
1318 1318
      */
1319
-    public function setAttachments($attachments){
1319
+    public function setAttachments($attachments) {
1320 1320
         $this->attachments = $attachments;
1321 1321
 
1322 1322
         return $this;
@@ -1328,7 +1328,7 @@  discard block
 block discarded – undo
1328 1328
      *
1329 1329
      * @return $this
1330 1330
      */
1331
-    public function setFlags($flags){
1331
+    public function setFlags($flags) {
1332 1332
         $this->flags = $flags;
1333 1333
 
1334 1334
         return $this;
@@ -1342,7 +1342,7 @@  discard block
 block discarded – undo
1342 1342
      * @throws Exceptions\RuntimeException
1343 1343
      * @throws Exceptions\ConnectionFailedException
1344 1344
      */
1345
-    public function setClient($client){
1345
+    public function setClient($client) {
1346 1346
         $this->client = $client;
1347 1347
         $this->client->openFolder($this->folder_path);
1348 1348
 
@@ -1357,7 +1357,7 @@  discard block
 block discarded – undo
1357 1357
      * @throws Exceptions\MessageNotFoundException
1358 1358
      * @throws Exceptions\ConnectionFailedException
1359 1359
      */
1360
-    public function setUid($uid){
1360
+    public function setUid($uid) {
1361 1361
         $this->uid = $uid;
1362 1362
         $this->msgn = $this->client->getConnection()->getMessageNumber($this->uid);
1363 1363
         $this->msglist = null;
@@ -1374,7 +1374,7 @@  discard block
 block discarded – undo
1374 1374
      * @throws Exceptions\MessageNotFoundException
1375 1375
      * @throws Exceptions\ConnectionFailedException
1376 1376
      */
1377
-    public function setMsgn($msgn, $msglist = null){
1377
+    public function setMsgn($msgn, $msglist = null) {
1378 1378
         $this->msgn = $msgn;
1379 1379
         $this->msglist = $msglist;
1380 1380
         $this->uid = $this->client->getConnection()->getUid($this->msgn);
@@ -1387,7 +1387,7 @@  discard block
 block discarded – undo
1387 1387
      *
1388 1388
      * @return int
1389 1389
      */
1390
-    public function getSequence(){
1390
+    public function getSequence() {
1391 1391
         return $this->sequence;
1392 1392
     }
1393 1393
 
@@ -1396,7 +1396,7 @@  discard block
 block discarded – undo
1396 1396
      *
1397 1397
      * @return int
1398 1398
      */
1399
-    public function getSequenceId(){
1399
+    public function getSequenceId() {
1400 1400
         return $this->sequence === IMAP::ST_UID ? $this->uid : $this->msgn;
1401 1401
     }
1402 1402
 
@@ -1408,11 +1408,11 @@  discard block
 block discarded – undo
1408 1408
      * @throws Exceptions\ConnectionFailedException
1409 1409
      * @throws Exceptions\MessageNotFoundException
1410 1410
      */
1411
-    public function setSequenceId($uid, $msglist = null){
1411
+    public function setSequenceId($uid, $msglist = null) {
1412 1412
         if ($this->getSequence() === IMAP::ST_UID) {
1413 1413
             $this->setUid($uid);
1414 1414
             $this->setMsglist($msglist);
1415
-        }else{
1415
+        } else {
1416 1416
             $this->setMsgn($uid, $msglist);
1417 1417
         }
1418 1418
     }
Please login to merge, or discard this patch.