Passed
Push — master ( ef4669...9202b0 )
by Malte
07:17 queued 02:44
created
src/IMAP/Providers/LaravelServiceProvider.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      * If however the default account is missing a parameter the package default account parameter will be used.
59 59
      * This can be disabled by setting imap.default in your config file to 'false'
60 60
      */
61
-    private function setVendorConfig(){
61
+    private function setVendorConfig() {
62 62
 
63 63
         $config_key = 'imap';
64 64
         $path = __DIR__.'/../../config/'.$config_key.'.php';
@@ -70,17 +70,17 @@  discard block
 block discarded – undo
70 70
 
71 71
         $config = $this->app['config']->get($config_key);
72 72
 
73
-        if(is_array($config)){
74
-            if(isset($config['default'])){
75
-                if(isset($config['accounts']) && $config['default'] != false){
73
+        if (is_array($config)) {
74
+            if (isset($config['default'])) {
75
+                if (isset($config['accounts']) && $config['default'] != false) {
76 76
 
77 77
                     $default_config = $vendor_config['accounts']['default'];
78
-                    if(isset($config['accounts'][$config['default']])){
78
+                    if (isset($config['accounts'][$config['default']])) {
79 79
                         $default_config = array_merge($default_config, $config['accounts'][$config['default']]);
80 80
                     }
81 81
 
82
-                    if(is_array($config['accounts'])){
83
-                        foreach($config['accounts'] as $account_key => $account){
82
+                    if (is_array($config['accounts'])) {
83
+                        foreach ($config['accounts'] as $account_key => $account) {
84 84
                             $config['accounts'][$account_key] = array_merge($default_config, $account);
85 85
                         }
86 86
                     }
@@ -114,23 +114,23 @@  discard block
 block discarded – undo
114 114
         $arrays = func_get_args();
115 115
         $base = array_shift($arrays);
116 116
 
117
-        if(!is_array($base)) $base = empty($base) ? array() : array($base);
117
+        if (!is_array($base)) $base = empty($base) ? array() : array($base);
118 118
 
119
-        foreach($arrays as $append) {
119
+        foreach ($arrays as $append) {
120 120
 
121
-            if(!is_array($append)) $append = array($append);
121
+            if (!is_array($append)) $append = array($append);
122 122
 
123
-            foreach($append as $key => $value) {
123
+            foreach ($append as $key => $value) {
124 124
 
125
-                if(!array_key_exists($key, $base) and !is_numeric($key)) {
125
+                if (!array_key_exists($key, $base) and !is_numeric($key)) {
126 126
                     $base[$key] = $append[$key];
127 127
                     continue;
128 128
                 }
129 129
 
130
-                if(is_array($value) or is_array($base[$key])) {
130
+                if (is_array($value) or is_array($base[$key])) {
131 131
                     $base[$key] = $this->array_merge_recursive_distinct($base[$key], $append[$key]);
132
-                } else if(is_numeric($key)) {
133
-                    if(!in_array($value, $base)) $base[] = $value;
132
+                } else if (is_numeric($key)) {
133
+                    if (!in_array($value, $base)) $base[] = $value;
134 134
                 } else {
135 135
                     $base[$key] = $value;
136 136
                 }
Please login to merge, or discard this patch.
examples/custom_attachment_mask.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
      * New custom method which can be called through a mask
17 17
      * @return string
18 18
      */
19
-    public function token(){
19
+    public function token() {
20 20
         return implode('-', [$this->id, $this->getMessage()->getUid(), $this->name]);
21 21
     }
22 22
 
Please login to merge, or discard this patch.
examples/replace_images_with_url.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 /** @var \Webklex\IMAP\Message $message */
21 21
 $message = $folder->query()->limit(1)->get()->first();
22 22
 
23
-$html = $message->getHTMLBody(function($body, $oAttachment){
23
+$html = $message->getHTMLBody(function($body, $oAttachment) {
24 24
     /** @var \Webklex\IMAP\Attachment $oAttachment */
25 25
     if ($oAttachment->id && $oAttachment->getImgSrc() != null) {
26 26
         $oMessage = $oAttachment->getMessage();
Please login to merge, or discard this patch.
src/IMAP/Support/Masks/MessageMask.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      * Get the message html body
30 30
      * @return null
31 31
      */
32
-    public function getHtmlBody(){
32
+    public function getHtmlBody() {
33 33
         $bodies = $this->parent->getBodies();
34 34
         if (!isset($bodies['html'])) {
35 35
             return null;
@@ -46,15 +46,15 @@  discard block
 block discarded – undo
46 46
      */
47 47
     public function getCustomHTMLBody($callback = false) {
48 48
         $body = $this->getHtmlBody();
49
-        if($body === null) return null;
49
+        if ($body === null) return null;
50 50
 
51 51
         if ($callback !== false) {
52 52
             $aAttachment = $this->parent->getAttachments();
53 53
             $aAttachment->each(function($oAttachment) use(&$body, $callback) {
54 54
                 /** @var Attachment $oAttachment */
55
-                if(is_callable($callback)) {
55
+                if (is_callable($callback)) {
56 56
                     $body = $callback($body, $oAttachment);
57
-                }elseif(is_string($callback)) {
57
+                }elseif (is_string($callback)) {
58 58
                     call_user_func($callback, [$body, $oAttachment]);
59 59
                 }
60 60
             });
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      * @return string|null
71 71
      */
72 72
     public function getHTMLBodyWithEmbeddedBase64Images() {
73
-        return $this->getCustomHTMLBody(function($body, $oAttachment){
73
+        return $this->getCustomHTMLBody(function($body, $oAttachment) {
74 74
             /** @var \Webklex\IMAP\Attachment $oAttachment */
75 75
             if ($oAttachment->id && $oAttachment->getImgSrc() != null) {
76 76
                 $body = str_replace('cid:'.$oAttachment->id, $oAttachment->getImgSrc(), $body);
Please login to merge, or discard this patch.
src/IMAP/Support/PaginatedCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
      * @return int|null
70 70
      */
71 71
     public function total($total = null) {
72
-        if($total === null) {
72
+        if ($total === null) {
73 73
             return $this->total;
74 74
         }
75 75
 
Please login to merge, or discard this patch.
src/IMAP/Support/Masks/Mask.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     public function __construct($parent) {
40 40
         $this->parent = $parent;
41 41
 
42
-        if(method_exists($this->parent, 'getAttributes')){
42
+        if (method_exists($this->parent, 'getAttributes')) {
43 43
             $this->attributes = array_merge($this->attributes, $this->parent->getAttributes());
44 44
         }
45 45
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     /**
50 50
      * Boot method made to be used by any custom mask
51 51
      */
52
-    protected function boot(){}
52
+    protected function boot() {}
53 53
 
54 54
     /**
55 55
      * Call dynamic attribute setter and getter methods and inherit the parent calls
@@ -60,17 +60,17 @@  discard block
 block discarded – undo
60 60
      * @throws MethodNotFoundException
61 61
      */
62 62
     public function __call($method, $arguments) {
63
-        if(strtolower(substr($method, 0, 3)) === 'get') {
63
+        if (strtolower(substr($method, 0, 3)) === 'get') {
64 64
             $name = Str::snake(substr($method, 3));
65 65
 
66
-            if(isset($this->attributes[$name])) {
66
+            if (isset($this->attributes[$name])) {
67 67
                 return $this->attributes[$name];
68 68
             }
69 69
 
70 70
         }elseif (strtolower(substr($method, 0, 3)) === 'set') {
71 71
             $name = Str::snake(substr($method, 3));
72 72
 
73
-            if(isset($this->attributes[$name])) {
73
+            if (isset($this->attributes[$name])) {
74 74
                 $this->attributes[$name] = array_pop($arguments);
75 75
 
76 76
                 return $this->attributes[$name];
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
         }
80 80
 
81
-        if(method_exists($this->parent, $method) === true){
81
+        if (method_exists($this->parent, $method) === true) {
82 82
             return call_user_func_array([$this->parent, $method], $arguments);
83 83
         }
84 84
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      * @return mixed|null
104 104
      */
105 105
     public function __get($name) {
106
-        if(isset($this->attributes[$name])) {
106
+        if (isset($this->attributes[$name])) {
107 107
             return $this->attributes[$name];
108 108
         }
109 109
 
@@ -113,14 +113,14 @@  discard block
 block discarded – undo
113 113
     /**
114 114
      * @return mixed
115 115
      */
116
-    public function getParent(){
116
+    public function getParent() {
117 117
         return $this->parent;
118 118
     }
119 119
 
120 120
     /**
121 121
      * @return array
122 122
      */
123
-    public function getAttributes(){
123
+    public function getAttributes() {
124 124
         return $this->attributes;
125 125
     }
126 126
 
Please login to merge, or discard this patch.
src/IMAP/Client.php 1 patch
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -173,45 +173,45 @@  discard block
 block discarded – undo
173 173
      * @throws MaskNotFoundException
174 174
      */
175 175
     protected function setMaskFromConfig($config) {
176
-        $default_config  = config("imap.masks");
176
+        $default_config = config("imap.masks");
177 177
 
178
-        if(isset($config['masks'])){
179
-            if(isset($config['masks']['message'])) {
180
-                if(class_exists($config['masks']['message'])) {
178
+        if (isset($config['masks'])) {
179
+            if (isset($config['masks']['message'])) {
180
+                if (class_exists($config['masks']['message'])) {
181 181
                     $this->default_message_mask = $config['masks']['message'];
182
-                }else{
182
+                } else {
183 183
                     throw new MaskNotFoundException("Unknown mask provided: ".$config['masks']['message']);
184 184
                 }
185
-            }else{
186
-                if(class_exists($default_config['message'])) {
185
+            } else {
186
+                if (class_exists($default_config['message'])) {
187 187
                     $this->default_message_mask = $default_config['message'];
188
-                }else{
188
+                } else {
189 189
                     throw new MaskNotFoundException("Unknown mask provided: ".$default_config['message']);
190 190
                 }
191 191
             }
192
-            if(isset($config['masks']['attachment'])) {
193
-                if(class_exists($config['masks']['attachment'])) {
192
+            if (isset($config['masks']['attachment'])) {
193
+                if (class_exists($config['masks']['attachment'])) {
194 194
                     $this->default_message_mask = $config['masks']['attachment'];
195
-                }else{
195
+                } else {
196 196
                     throw new MaskNotFoundException("Unknown mask provided: ".$config['masks']['attachment']);
197 197
                 }
198
-            }else{
199
-                if(class_exists($default_config['attachment'])) {
198
+            } else {
199
+                if (class_exists($default_config['attachment'])) {
200 200
                     $this->default_message_mask = $default_config['attachment'];
201
-                }else{
201
+                } else {
202 202
                     throw new MaskNotFoundException("Unknown mask provided: ".$default_config['attachment']);
203 203
                 }
204 204
             }
205
-        }else{
206
-            if(class_exists($default_config['message'])) {
205
+        } else {
206
+            if (class_exists($default_config['message'])) {
207 207
                 $this->default_message_mask = $default_config['message'];
208
-            }else{
208
+            } else {
209 209
                 throw new MaskNotFoundException("Unknown mask provided: ".$default_config['message']);
210 210
             }
211 211
 
212
-            if(class_exists($default_config['attachment'])) {
212
+            if (class_exists($default_config['attachment'])) {
213 213
                 $this->default_message_mask = $default_config['attachment'];
214
-            }else{
214
+            } else {
215 215
                 throw new MaskNotFoundException("Unknown mask provided: ".$default_config['attachment']);
216 216
             }
217 217
         }
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
         $pattern = $parent_folder.($hierarchical ? '%' : '*');
362 362
 
363 363
         $items = \imap_getmailboxes($this->connection, $this->getAddress(), $pattern);
364
-        if(is_array($items)){
364
+        if (is_array($items)) {
365 365
             foreach ($items as $item) {
366 366
                 $folder = new Folder($this, $item);
367 367
 
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
             }
377 377
 
378 378
             return $folders;
379
-        }else{
379
+        } else {
380 380
             throw new MailboxFetchingException($this->getLastError());
381 381
         }
382 382
     }
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
     public function openFolder($folder_path, $attempts = 3) {
393 393
         $this->checkConnection();
394 394
 
395
-        if(property_exists($folder_path, 'path')) {
395
+        if (property_exists($folder_path, 'path')) {
396 396
             $folder_path = $folder_path->path;
397 397
         }
398 398
 
@@ -413,8 +413,8 @@  discard block
 block discarded – undo
413 413
      */
414 414
     public function createFolder($name, $expunge = true) {
415 415
         $this->checkConnection();
416
-        $status = \imap_createmailbox($this->getConnection(), $this->getAddress() . \imap_utf7_encode($name));
417
-        if($expunge) $this->expunge();
416
+        $status = \imap_createmailbox($this->getConnection(), $this->getAddress().\imap_utf7_encode($name));
417
+        if ($expunge) $this->expunge();
418 418
 
419 419
         return $status;
420 420
     }
@@ -430,8 +430,8 @@  discard block
 block discarded – undo
430 430
      */
431 431
     public function renameFolder($old_name, $new_name, $expunge = true) {
432 432
         $this->checkConnection();
433
-        $status = \imap_renamemailbox($this->getConnection(), $this->getAddress() . \imap_utf7_encode($old_name), $this->getAddress() . \imap_utf7_encode($new_name));
434
-        if($expunge) $this->expunge();
433
+        $status = \imap_renamemailbox($this->getConnection(), $this->getAddress().\imap_utf7_encode($old_name), $this->getAddress().\imap_utf7_encode($new_name));
434
+        if ($expunge) $this->expunge();
435 435
 
436 436
         return $status;
437 437
     }
@@ -446,8 +446,8 @@  discard block
 block discarded – undo
446 446
      */
447 447
     public function deleteFolder($name, $expunge = true) {
448 448
         $this->checkConnection();
449
-        $status = \imap_deletemailbox($this->getConnection(), $this->getAddress() . \imap_utf7_encode($name));
450
-        if($expunge) $this->expunge();
449
+        $status = \imap_deletemailbox($this->getConnection(), $this->getAddress().\imap_utf7_encode($name));
450
+        if ($expunge) $this->expunge();
451 451
 
452 452
         return $status;
453 453
     }
@@ -541,7 +541,7 @@  discard block
 block discarded – undo
541 541
         if (!$this->validate_cert) {
542 542
             $address .= '/novalidate-cert';
543 543
         }
544
-        if (in_array($this->encryption,['tls', 'notls', 'ssl'])) {
544
+        if (in_array($this->encryption, ['tls', 'notls', 'ssl'])) {
545 545
             $address .= '/'.$this->encryption;
546 546
         } elseif ($this->encryption === "starttls") {
547 547
             $address .= '/tls';
@@ -664,7 +664,7 @@  discard block
 block discarded – undo
664 664
      * @throws InvalidImapTimeoutTypeException
665 665
      */
666 666
     public function setTimeout($type, $timeout) {
667
-        if(0 <= $type && $type <= 4) {
667
+        if (0 <= $type && $type <= 4) {
668 668
             return \imap_timeout($type, $timeout);
669 669
         }
670 670
 
@@ -678,8 +678,8 @@  discard block
 block discarded – undo
678 678
      * @return mixed
679 679
      * @throws InvalidImapTimeoutTypeException
680 680
      */
681
-    public function getTimeout($type){
682
-        if(0 <= $type && $type <= 4) {
681
+    public function getTimeout($type) {
682
+        if (0 <= $type && $type <= 4) {
683 683
             return \imap_timeout($type);
684 684
         }
685 685
 
@@ -689,7 +689,7 @@  discard block
 block discarded – undo
689 689
     /**
690 690
      * @return string
691 691
      */
692
-    public function getDefaultMessageMask(){
692
+    public function getDefaultMessageMask() {
693 693
         return $this->default_message_mask;
694 694
     }
695 695
 
@@ -700,7 +700,7 @@  discard block
 block discarded – undo
700 700
      * @throws MaskNotFoundException
701 701
      */
702 702
     public function setDefaultMessageMask($mask) {
703
-        if(class_exists($mask)) {
703
+        if (class_exists($mask)) {
704 704
             $this->default_message_mask = $mask;
705 705
 
706 706
             return $this;
@@ -712,7 +712,7 @@  discard block
 block discarded – undo
712 712
     /**
713 713
      * @return string
714 714
      */
715
-    public function getDefaultAttachmentMask(){
715
+    public function getDefaultAttachmentMask() {
716 716
         return $this->default_attachment_mask;
717 717
     }
718 718
 
@@ -723,7 +723,7 @@  discard block
 block discarded – undo
723 723
      * @throws MaskNotFoundException
724 724
      */
725 725
     public function setDefaultAttachmentMask($mask) {
726
-        if(class_exists($mask)) {
726
+        if (class_exists($mask)) {
727 727
             $this->default_attachment_mask = $mask;
728 728
 
729 729
             return $this;
@@ -737,7 +737,7 @@  discard block
 block discarded – undo
737 737
      *
738 738
      * @return Folder
739 739
      */
740
-    public function getFolderPath(){
740
+    public function getFolderPath() {
741 741
         return $this->active_folder;
742 742
     }
743 743
 }
Please login to merge, or discard this patch.
src/IMAP/Folder.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 
120 120
         $this->setDelimiter($structure->delimiter);
121 121
         $this->path      = $structure->name;
122
-        $this->full_name  = $this->decodeName($structure->name);
122
+        $this->full_name = $this->decodeName($structure->name);
123 123
         $this->name      = $this->getSimpleName($this->delimiter, $this->full_name);
124 124
 
125 125
         $this->parseAttributes($structure->attributes);
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
      * @return WhereQuery
133 133
      * @throws Exceptions\ConnectionFailedException
134 134
      */
135
-    public function query($charset = 'UTF-8'){
135
+    public function query($charset = 'UTF-8') {
136 136
         $this->getClient()->checkConnection();
137 137
         $this->getClient()->openFolder($this->path);
138 138
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
      * @inheritdoc self::query($charset = 'UTF-8')
144 144
      * @throws Exceptions\ConnectionFailedException
145 145
      */
146
-    public function search($charset = 'UTF-8'){
146
+    public function search($charset = 'UTF-8') {
147 147
         return $this->query($charset);
148 148
     }
149 149
 
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
      * @inheritdoc self::query($charset = 'UTF-8')
152 152
      * @throws Exceptions\ConnectionFailedException
153 153
      */
154
-    public function messages($charset = 'UTF-8'){
154
+    public function messages($charset = 'UTF-8') {
155 155
         return $this->query($charset);
156 156
     }
157 157
 
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
      * @deprecated 1.2.1:2.0.0 No longer needed. Use Folder::query() instead
317 317
      * @see Folder::query()
318 318
      */
319
-    public function searchMessages(array $where, $fetch_options = null, $fetch_body = true,  $fetch_attachment = true, $fetch_flags = true, $limit = null, $page = 1, $charset = "UTF-8") {
319
+    public function searchMessages(array $where, $fetch_options = null, $fetch_body = true, $fetch_attachment = true, $fetch_flags = true, $limit = null, $page = 1, $charset = "UTF-8") {
320 320
         $this->getClient()->checkConnection();
321 321
 
322 322
         return $this->query($charset)->where($where)->setFetchOptions($fetch_options)->setFetchBody($fetch_body)
@@ -375,7 +375,7 @@  discard block
 block discarded – undo
375 375
      */
376 376
     public function delete($expunge = true) {
377 377
         $status = \imap_deletemailbox($this->client->getConnection(), $this->path);
378
-        if($expunge) $this->client->expunge();
378
+        if ($expunge) $this->client->expunge();
379 379
 
380 380
         return $status;
381 381
     }
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
      */
393 393
     public function move($target_mailbox, $expunge = true) {
394 394
         $status = \imap_renamemailbox($this->client->getConnection(), $this->path, $target_mailbox);
395
-        if($expunge) $this->client->expunge();
395
+        if ($expunge) $this->client->expunge();
396 396
 
397 397
         return $status;
398 398
     }
@@ -433,7 +433,7 @@  discard block
 block discarded – undo
433 433
          */
434 434
 
435 435
         if ($internal_date != null) {
436
-            if ($internal_date instanceof \Carbon\Carbon){
436
+            if ($internal_date instanceof \Carbon\Carbon) {
437 437
                 $internal_date = $internal_date->format('d-M-Y H:i:s O');
438 438
             }
439 439
             return \imap_append($this->client->getConnection(), $this->path, $message, $options, $internal_date);
@@ -454,8 +454,8 @@  discard block
 block discarded – undo
454 454
     /**
455 455
      * @param $delimiter
456 456
      */
457
-    public function setDelimiter($delimiter){
458
-        if(in_array($delimiter, [null, '', ' ', false]) === true) {
457
+    public function setDelimiter($delimiter) {
458
+        if (in_array($delimiter, [null, '', ' ', false]) === true) {
459 459
             $delimiter = config('imap.options.delimiter', '/');
460 460
         }
461 461
 
Please login to merge, or discard this patch.
src/IMAP/Attachment.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         $this->part_number = ($part_number) ? $part_number : $this->part_number;
98 98
 
99 99
         $default_mask = $this->oMessage->getClient()->getDefaultAttachmentMask();
100
-        if($default_mask != null) {
100
+        if ($default_mask != null) {
101 101
             $this->mask = $default_mask;
102 102
         }
103 103
 
@@ -114,10 +114,10 @@  discard block
 block discarded – undo
114 114
      * @throws MethodNotFoundException
115 115
      */
116 116
     public function __call($method, $arguments) {
117
-        if(strtolower(substr($method, 0, 3)) === 'get') {
117
+        if (strtolower(substr($method, 0, 3)) === 'get') {
118 118
             $name = Str::snake(substr($method, 3));
119 119
 
120
-            if(isset($this->attributes[$name])) {
120
+            if (isset($this->attributes[$name])) {
121 121
                 return $this->attributes[$name];
122 122
             }
123 123
 
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
      * @return mixed|null
152 152
      */
153 153
     public function __get($name) {
154
-        if(isset($this->attributes[$name])) {
154
+        if (isset($this->attributes[$name])) {
155 155
             return $this->attributes[$name];
156 156
         }
157 157
 
@@ -263,11 +263,11 @@  discard block
 block discarded – undo
263 263
      * @param $name
264 264
      */
265 265
     public function setName($name) {
266
-        if($this->config['decoder']['attachment']['name'] === 'utf-8') {
266
+        if ($this->config['decoder']['attachment']['name'] === 'utf-8') {
267 267
             $this->name = \imap_utf8($name);
268
-        }elseif($this->config['decoder']['attachment']['name'] === 'iconv') {
268
+        }elseif ($this->config['decoder']['attachment']['name'] === 'iconv') {
269 269
             $this->name = iconv_mime_decode($name);
270
-        }else{
270
+        } else {
271 271
             $this->name = mb_decode_mimeheader($name);
272 272
         }
273 273
     }
@@ -287,16 +287,16 @@  discard block
 block discarded – undo
287 287
     /**
288 288
      * @return string|null
289 289
      */
290
-    public function getMimeType(){
290
+    public function getMimeType() {
291 291
         return (new \finfo())->buffer($this->getContent(), FILEINFO_MIME_TYPE);
292 292
     }
293 293
 
294 294
     /**
295 295
      * @return string|null
296 296
      */
297
-    public function getExtension(){
297
+    public function getExtension() {
298 298
         $deprecated_guesser = "\Symfony\Component\HttpFoundation\File\MimeType\ExtensionGuesser";
299
-        if (class_exists($deprecated_guesser) !== false){
299
+        if (class_exists($deprecated_guesser) !== false) {
300 300
             return $deprecated_guesser::getInstance()->guess($this->getMimeType());
301 301
         }
302 302
         $guesser = "\Symfony\Component\Mime\MimeTypes";
@@ -307,14 +307,14 @@  discard block
 block discarded – undo
307 307
     /**
308 308
      * @return array
309 309
      */
310
-    public function getAttributes(){
310
+    public function getAttributes() {
311 311
         return $this->attributes;
312 312
     }
313 313
 
314 314
     /**
315 315
      * @return Message
316 316
      */
317
-    public function getMessage(){
317
+    public function getMessage() {
318 318
         return $this->oMessage;
319 319
     }
320 320
 
@@ -322,8 +322,8 @@  discard block
 block discarded – undo
322 322
      * @param $mask
323 323
      * @return $this
324 324
      */
325
-    public function setMask($mask){
326
-        if(class_exists($mask)){
325
+    public function setMask($mask) {
326
+        if (class_exists($mask)) {
327 327
             $this->mask = $mask;
328 328
         }
329 329
 
@@ -333,7 +333,7 @@  discard block
 block discarded – undo
333 333
     /**
334 334
      * @return string
335 335
      */
336
-    public function getMask(){
336
+    public function getMask() {
337 337
         return $this->mask;
338 338
     }
339 339
 
@@ -344,9 +344,9 @@  discard block
 block discarded – undo
344 344
      * @return mixed
345 345
      * @throws MaskNotFoundException
346 346
      */
347
-    public function mask($mask = null){
347
+    public function mask($mask = null) {
348 348
         $mask = $mask !== null ? $mask : $this->mask;
349
-        if(class_exists($mask)){
349
+        if (class_exists($mask)) {
350 350
             return new $mask($this);
351 351
         }
352 352
 
Please login to merge, or discard this patch.