Passed
Push — master ( b7e336...b99c9f )
by Malte
04:40
created
src/IMAP/Providers/LaravelServiceProvider.php 2 patches
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.
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -114,11 +114,15 @@  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)) {
118
+            $base = empty($base) ? array() : array($base);
119
+        }
118 120
 
119 121
         foreach($arrays as $append) {
120 122
 
121
-            if(!is_array($append)) $append = array($append);
123
+            if(!is_array($append)) {
124
+                $append = array($append);
125
+            }
122 126
 
123 127
             foreach($append as $key => $value) {
124 128
 
@@ -130,7 +134,9 @@  discard block
 block discarded – undo
130 134
                 if(is_array($value) or is_array($base[$key])) {
131 135
                     $base[$key] = $this->array_merge_recursive_distinct($base[$key], $append[$key]);
132 136
                 } else if(is_numeric($key)) {
133
-                    if(!in_array($value, $base)) $base[] = $value;
137
+                    if(!in_array($value, $base)) {
138
+                        $base[] = $value;
139
+                    }
134 140
                 } else {
135 141
                     $base[$key] = $value;
136 142
                 }
Please login to merge, or discard this patch.
src/IMAP/Support/Masks/MessageMask.php 2 patches
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,9 @@  discard block
 block discarded – undo
45 45
      */
46 46
     public function getCustomHTMLBody($callback = false) {
47 47
         $body = $this->getHtmlBody();
48
-        if($body === null) return null;
48
+        if($body === null) {
49
+            return null;
50
+        }
49 51
 
50 52
         if ($callback !== false) {
51 53
             $aAttachment = $this->parent->getAttachments();
@@ -53,7 +55,7 @@  discard block
 block discarded – undo
53 55
                 /** @var Attachment $oAttachment */
54 56
                 if(is_callable($callback)) {
55 57
                     $body = $callback($body, $oAttachment);
56
-                }elseif(is_string($callback)) {
58
+                } elseif(is_string($callback)) {
57 59
                     call_user_func($callback, [$body, $oAttachment]);
58 60
                 }
59 61
             });
Please login to merge, or discard this 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.
examples/custom_message_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->message_id, $this->uid, $this->message_no]);
21 21
     }
22 22
 
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/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 2 patches
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.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
                 return $this->attributes[$name];
68 68
             }
69 69
 
70
-        }elseif (strtolower(substr($method, 0, 3)) === 'set') {
70
+        } elseif (strtolower(substr($method, 0, 3)) === 'set') {
71 71
             $name = Str::snake(substr($method, 3));
72 72
 
73 73
             if(isset($this->attributes[$name])) {
Please login to merge, or discard this patch.
src/IMAP/Query/Query.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     public function __construct(Client $client, $charset = 'UTF-8') {
69 69
         $this->setClient($client);
70 70
 
71
-        if(config('imap.options.fetch') === IMAP::FT_PEEK) $this->leaveUnread();
71
+        if (config('imap.options.fetch') === IMAP::FT_PEEK) $this->leaveUnread();
72 72
 
73 73
         $this->date_format = config('imap.date_format', 'd M y');
74 74
 
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     /**
81 81
      * Instance boot method for additional functionality
82 82
      */
83
-    protected function boot(){}
83
+    protected function boot() {}
84 84
 
85 85
     /**
86 86
      * Parse a given value
@@ -88,8 +88,8 @@  discard block
 block discarded – undo
88 88
      *
89 89
      * @return string
90 90
      */
91
-    protected function parse_value($value){
92
-        switch(true){
91
+    protected function parse_value($value) {
92
+        switch (true) {
93 93
             case $value instanceof \Carbon\Carbon:
94 94
                 $value = $value->format($this->date_format);
95 95
                 break;
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
      * @throws MessageSearchValidationException
107 107
      */
108 108
     protected function parse_date($date) {
109
-        if($date instanceof \Carbon\Carbon) return $date;
109
+        if ($date instanceof \Carbon\Carbon) return $date;
110 110
 
111 111
         try {
112 112
             $date = Carbon::parse($date);
@@ -145,16 +145,16 @@  discard block
 block discarded – undo
145 145
      * @return \Illuminate\Support\Collection
146 146
      * @throws \Webklex\IMAP\Exceptions\ConnectionFailedException
147 147
      */
148
-    protected function search(){
148
+    protected function search() {
149 149
         $this->generate_query();
150 150
 
151 151
         /**
152 152
          * Don't set the charset if it isn't used - prevent strange outlook mail server errors
153 153
          * @see https://github.com/Webklex/laravel-imap/issues/100
154 154
          */
155
-        if($this->getCharset() === null){
155
+        if ($this->getCharset() === null) {
156 156
             $available_messages = \imap_search($this->getClient()->getConnection(), $this->getRawQuery(), IMAP::SE_UID);
157
-        }else{
157
+        } else {
158 158
             $available_messages = \imap_search($this->getClient()->getConnection(), $this->getRawQuery(), IMAP::SE_UID, $this->getCharset());
159 159
         }
160 160
 
@@ -194,15 +194,15 @@  discard block
 block discarded – undo
194 194
 
195 195
                 $options = config('imap.options');
196 196
 
197
-                if(strtolower($options['fetch_order']) === 'desc'){
197
+                if (strtolower($options['fetch_order']) === 'desc') {
198 198
                     $available_messages = $available_messages->reverse();
199 199
                 }
200 200
 
201
-                $query =& $this;
201
+                $query = & $this;
202 202
 
203 203
                 $available_messages->forPage($this->page, $this->limit)->each(function($msgno, $msglist) use(&$messages, $options, $query) {
204 204
                     $oMessage = new Message($msgno, $msglist, $query->getClient(), $query->getFetchOptions(), $query->getFetchBody(), $query->getFetchAttachment(), $query->getFetchFlags());
205
-                    switch ($options['message_key']){
205
+                    switch ($options['message_key']) {
206 206
                         case 'number':
207 207
                             $message_key = $oMessage->getMessageNo();
208 208
                             break;
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
      * @return \Illuminate\Pagination\LengthAwarePaginator
234 234
      * @throws GetMessagesFailedException
235 235
      */
236
-    public function paginate($per_page = 5, $page = null, $page_name = 'imap_page'){
236
+    public function paginate($per_page = 5, $page = null, $page_name = 'imap_page') {
237 237
         $this->page = $page > $this->page ? $page : $this->page;
238 238
         $this->limit = $per_page;
239 239
 
@@ -251,9 +251,9 @@  discard block
 block discarded – undo
251 251
             if (count($statement) == 1) {
252 252
                 $query .= $statement[0];
253 253
             } else {
254
-                if($statement[1] === null){
254
+                if ($statement[1] === null) {
255 255
                     $query .= $statement[0];
256
-                }else{
256
+                } else {
257 257
                     $query .= $statement[0].' "'.$statement[1].'"';
258 258
                 }
259 259
             }
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
      * @return $this
284 284
      */
285 285
     public function limit($limit, $page = 1) {
286
-        if($page >= 1) $this->page = $page;
286
+        if ($page >= 1) $this->page = $page;
287 287
         $this->limit = $limit;
288 288
 
289 289
         return $this;
Please login to merge, or discard this patch.
Braces   +11 added lines, -5 removed lines patch added patch discarded remove patch
@@ -68,7 +68,9 @@  discard block
 block discarded – undo
68 68
     public function __construct(Client $client, $charset = 'UTF-8') {
69 69
         $this->setClient($client);
70 70
 
71
-        if(config('imap.options.fetch') === IMAP::FT_PEEK) $this->leaveUnread();
71
+        if(config('imap.options.fetch') === IMAP::FT_PEEK) {
72
+            $this->leaveUnread();
73
+        }
72 74
 
73 75
         $this->date_format = config('imap.date_format', 'd M y');
74 76
 
@@ -106,7 +108,9 @@  discard block
 block discarded – undo
106 108
      * @throws MessageSearchValidationException
107 109
      */
108 110
     protected function parse_date($date) {
109
-        if($date instanceof \Carbon\Carbon) return $date;
111
+        if($date instanceof \Carbon\Carbon) {
112
+            return $date;
113
+        }
110 114
 
111 115
         try {
112 116
             $date = Carbon::parse($date);
@@ -154,7 +158,7 @@  discard block
 block discarded – undo
154 158
          */
155 159
         if($this->getCharset() === null){
156 160
             $available_messages = \imap_search($this->getClient()->getConnection(), $this->getRawQuery(), IMAP::SE_UID);
157
-        }else{
161
+        } else{
158 162
             $available_messages = \imap_search($this->getClient()->getConnection(), $this->getRawQuery(), IMAP::SE_UID, $this->getCharset());
159 163
         }
160 164
 
@@ -253,7 +257,7 @@  discard block
 block discarded – undo
253 257
             } else {
254 258
                 if($statement[1] === null){
255 259
                     $query .= $statement[0];
256
-                }else{
260
+                } else{
257 261
                     $query .= $statement[0].' "'.$statement[1].'"';
258 262
                 }
259 263
             }
@@ -283,7 +287,9 @@  discard block
 block discarded – undo
283 287
      * @return $this
284 288
      */
285 289
     public function limit($limit, $page = 1) {
286
-        if($page >= 1) $this->page = $page;
290
+        if($page >= 1) {
291
+            $this->page = $page;
292
+        }
287 293
         $this->limit = $limit;
288 294
 
289 295
         return $this;
Please login to merge, or discard this patch.
src/IMAP/Client.php 3 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -436,14 +436,14 @@
 block discarded – undo
436 436
         return $status;
437 437
     }
438 438
     
439
-     /**
440
-     * Delete Folder
441
-     * @param string $name
442
-      * @param boolean $expunge
443
-     *
444
-     * @return bool
445
-     * @throws ConnectionFailedException
446
-     */
439
+        /**
440
+         * Delete Folder
441
+         * @param string $name
442
+         * @param boolean $expunge
443
+         *
444
+         * @return bool
445
+         * @throws ConnectionFailedException
446
+         */
447 447
     public function deleteFolder($name, $expunge = true) {
448 448
         $this->checkConnection();
449 449
         $status = \imap_deletemailbox($this->getConnection(), $this->getAddress() . \imap_utf7_encode($name));
Please login to merge, or discard this 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.
Braces   +19 added lines, -13 removed lines patch added patch discarded remove patch
@@ -179,39 +179,39 @@  discard block
 block discarded – undo
179 179
             if(isset($config['masks']['message'])) {
180 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{
185
+            } else{
186 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 192
             if(isset($config['masks']['attachment'])) {
193 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{
198
+            } else{
199 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{
205
+        } else{
206 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 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
         }
@@ -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
     }
@@ -414,7 +414,9 @@  discard block
 block discarded – undo
414 414
     public function createFolder($name, $expunge = true) {
415 415
         $this->checkConnection();
416 416
         $status = \imap_createmailbox($this->getConnection(), $this->getAddress() . \imap_utf7_encode($name));
417
-        if($expunge) $this->expunge();
417
+        if($expunge) {
418
+            $this->expunge();
419
+        }
418 420
 
419 421
         return $status;
420 422
     }
@@ -431,7 +433,9 @@  discard block
 block discarded – undo
431 433
     public function renameFolder($old_name, $new_name, $expunge = true) {
432 434
         $this->checkConnection();
433 435
         $status = \imap_renamemailbox($this->getConnection(), $this->getAddress() . \imap_utf7_encode($old_name), $this->getAddress() . \imap_utf7_encode($new_name));
434
-        if($expunge) $this->expunge();
436
+        if($expunge) {
437
+            $this->expunge();
438
+        }
435 439
 
436 440
         return $status;
437 441
     }
@@ -447,7 +451,9 @@  discard block
 block discarded – undo
447 451
     public function deleteFolder($name, $expunge = true) {
448 452
         $this->checkConnection();
449 453
         $status = \imap_deletemailbox($this->getConnection(), $this->getAddress() . \imap_utf7_encode($name));
450
-        if($expunge) $this->expunge();
454
+        if($expunge) {
455
+            $this->expunge();
456
+        }
451 457
 
452 458
         return $status;
453 459
     }
Please login to merge, or discard this patch.