Passed
Push — master ( 916c78...351345 )
by Malte
01:55
created
src/Structure.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      * @throws MessageContentFetchingException
70 70
      * @throws InvalidMessageDateException
71 71
      */
72
-    protected function parse(){
72
+    protected function parse() {
73 73
         $this->findContentType();
74 74
         $this->parts = $this->find_parts();
75 75
     }
@@ -77,10 +77,10 @@  discard block
 block discarded – undo
77 77
     /**
78 78
      * Determine the message content type
79 79
      */
80
-    public function findContentType(){
81
-        if(stripos($this->header->get("content-type"), 'multipart') === 0) {
80
+    public function findContentType() {
81
+        if (stripos($this->header->get("content-type"), 'multipart') === 0) {
82 82
             $this->type = IMAP::MESSAGE_TYPE_MULTIPART;
83
-        }else{
83
+        }else {
84 84
             $this->type = IMAP::MESSAGE_TYPE_TEXT;
85 85
         }
86 86
     }
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     /**
89 89
      * Determine the message content type
90 90
      */
91
-    public function getBoundary(){
91
+    public function getBoundary() {
92 92
         return $this->header->find("/boundary\=\"(.*)\"/");
93 93
     }
94 94
 
@@ -97,15 +97,15 @@  discard block
 block discarded – undo
97 97
      * @throws MessageContentFetchingException
98 98
      * @throws InvalidMessageDateException
99 99
      */
100
-    public function find_parts(){
101
-        if($this->type === IMAP::MESSAGE_TYPE_MULTIPART) {
102
-            if (($boundary = $this->getBoundary()) === null)  {
100
+    public function find_parts() {
101
+        if ($this->type === IMAP::MESSAGE_TYPE_MULTIPART) {
102
+            if (($boundary = $this->getBoundary()) === null) {
103 103
                 throw new MessageContentFetchingException("no content found", 0);
104 104
             }
105 105
 
106 106
             $raw_parts = explode($boundary, $this->raw);
107 107
             $parts = [];
108
-            foreach($raw_parts as $part) {
108
+            foreach ($raw_parts as $part) {
109 109
                 $part = trim(rtrim($part));
110 110
                 if ($part !== "--") {
111 111
                     $parts[] = new Part($part);
Please login to merge, or discard this patch.
src/Query/Query.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     public function __construct(Client $client, $charset = 'UTF-8') {
74 74
         $this->setClient($client);
75 75
 
76
-        if(ClientManager::get('options.fetch') === IMAP::FT_PEEK) $this->leaveUnread();
76
+        if (ClientManager::get('options.fetch') === IMAP::FT_PEEK) $this->leaveUnread();
77 77
 
78 78
         $this->date_format = ClientManager::get('date_format', 'd M y');
79 79
 
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
     /**
86 86
      * Instance boot method for additional functionality
87 87
      */
88
-    protected function boot(){}
88
+    protected function boot() {}
89 89
 
90 90
     /**
91 91
      * Parse a given value
@@ -93,8 +93,8 @@  discard block
 block discarded – undo
93 93
      *
94 94
      * @return string
95 95
      */
96
-    protected function parse_value($value){
97
-        switch(true){
96
+    protected function parse_value($value) {
97
+        switch (true) {
98 98
             case $value instanceof \Carbon\Carbon:
99 99
                 $value = $value->format($this->date_format);
100 100
                 break;
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      * @throws MessageSearchValidationException
112 112
      */
113 113
     protected function parse_date($date) {
114
-        if($date instanceof \Carbon\Carbon) return $date;
114
+        if ($date instanceof \Carbon\Carbon) return $date;
115 115
 
116 116
         try {
117 117
             $date = Carbon::parse($date);
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
      * @return Collection
151 151
      * @throws GetMessagesFailedException
152 152
      */
153
-    protected function search(){
153
+    protected function search() {
154 154
         $this->generate_query();
155 155
 
156 156
         try {
@@ -195,15 +195,15 @@  discard block
 block discarded – undo
195 195
 
196 196
                 $options = ClientManager::get('options');
197 197
 
198
-                if(strtolower($options['fetch_order']) === 'desc'){
198
+                if (strtolower($options['fetch_order']) === 'desc') {
199 199
                     $available_messages = $available_messages->reverse();
200 200
                 }
201 201
 
202
-                $query =& $this;
202
+                $query = & $this;
203 203
 
204 204
                 $available_messages->forPage($this->page, $this->limit)->each(function($msgno, $msglist) use(&$messages, $options, $query) {
205 205
                     $message = $query->getMessage($msgno, $msglist);
206
-                    switch ($options['message_key']){
206
+                    switch ($options['message_key']) {
207 207
                         case 'number':
208 208
                             $message_key = $message->getMessageNo();
209 209
                             break;
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
 
222 222
             return $messages;
223 223
         } catch (\Exception $e) {
224
-            throw new GetMessagesFailedException($e->getMessage(),0, $e);
224
+            throw new GetMessagesFailedException($e->getMessage(), 0, $e);
225 225
         }
226 226
     }
227 227
 
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
      * @throws MessageContentFetchingException
238 238
      * @throws MessageHeaderFetchingException
239 239
      */
240
-    public function getMessage($msgno, $msglist = null){
240
+    public function getMessage($msgno, $msglist = null) {
241 241
         return new Message($msgno, $msglist, $this->getClient(), $this->getFetchOptions(), $this->getFetchBody(), $this->getFetchFlags());
242 242
     }
243 243
 
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
      * @return LengthAwarePaginator
251 251
      * @throws GetMessagesFailedException
252 252
      */
253
-    public function paginate($per_page = 5, $page = null, $page_name = 'imap_page'){
253
+    public function paginate($per_page = 5, $page = null, $page_name = 'imap_page') {
254 254
         $this->page = $page > $this->page ? $page : $this->page;
255 255
         $this->limit = $per_page;
256 256
 
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
             $messages->each(function($message) use(&$collection){
262 262
                 $collection[] = $message;
263 263
             });
264
-        }else{
264
+        }else {
265 265
             $collection = array_fill(0, $messages->total(), true);
266 266
         }
267 267
 
@@ -278,10 +278,10 @@  discard block
 block discarded – undo
278 278
         $this->query->each(function($statement) use(&$query) {
279 279
             if (count($statement) == 1) {
280 280
                 $query .= $statement[0];
281
-            } else {
282
-                if($statement[1] === null){
281
+            }else {
282
+                if ($statement[1] === null) {
283 283
                     $query .= $statement[0];
284
-                }else{
284
+                }else {
285 285
                     $query .= $statement[0].' "'.$statement[1].'"';
286 286
                 }
287 287
             }
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
      * @return $this
312 312
      */
313 313
     public function limit($limit, $page = 1) {
314
-        if($page >= 1) $this->page = $page;
314
+        if ($page >= 1) $this->page = $page;
315 315
         $this->limit = $limit;
316 316
 
317 317
         return $this;
Please login to merge, or discard this patch.
src/Query/WhereQuery.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -76,18 +76,18 @@  discard block
 block discarded – undo
76 76
 
77 77
         $name = Str::camel($name);
78 78
 
79
-        if(strtolower(substr($name, 0, 3)) === 'not') {
79
+        if (strtolower(substr($name, 0, 3)) === 'not') {
80 80
             $that = $that->whereNot();
81 81
             $name = substr($name, 3);
82 82
         }
83 83
 
84
-        if (strpos(strtolower($name), "where") === false){
84
+        if (strpos(strtolower($name), "where") === false) {
85 85
             $method = 'where'.ucfirst($name);
86
-        }else{
86
+        }else {
87 87
             $method = lcfirst($name);
88 88
         }
89 89
 
90
-        if(method_exists($this, $method) === true){
90
+        if (method_exists($this, $method) === true) {
91 91
             return call_user_func_array([$that, $method], $arguments);
92 92
         }
93 93
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
         if (substr($criteria, 0, 7) === "CUSTOM ") {
107 107
             return substr($criteria, 7);
108 108
         }
109
-        if(in_array($criteria, $this->available_criteria) === false) {
109
+        if (in_array($criteria, $this->available_criteria) === false) {
110 110
             throw new InvalidWhereQueryCriteriaException();
111 111
         }
112 112
 
@@ -121,20 +121,20 @@  discard block
 block discarded – undo
121 121
      * @throws InvalidWhereQueryCriteriaException
122 122
      */
123 123
     public function where($criteria, $value = null) {
124
-        if(is_array($criteria)){
125
-            foreach($criteria as $key => $value){
126
-                if(is_numeric($key)){
124
+        if (is_array($criteria)) {
125
+            foreach ($criteria as $key => $value) {
126
+                if (is_numeric($key)) {
127 127
                     return $this->where($value);
128 128
                 }
129 129
                 return $this->where($key, $value);
130 130
             }
131
-        }else{
131
+        }else {
132 132
             $criteria = $this->validate_criteria($criteria);
133 133
             $value = $this->parse_value($value);
134 134
 
135
-            if($value === null || $value === ''){
135
+            if ($value === null || $value === '') {
136 136
                 $this->query->push([$criteria]);
137
-            }else{
137
+            }else {
138 138
                 $this->query->push([$criteria, $value]);
139 139
             }
140 140
         }
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
      */
150 150
     public function orWhere(\Closure $closure = null) {
151 151
         $this->query->push(['OR']);
152
-        if($closure !== null) $closure($this);
152
+        if ($closure !== null) $closure($this);
153 153
 
154 154
         return $this;
155 155
     }
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
      */
162 162
     public function andWhere(\Closure $closure = null) {
163 163
         $this->query->push(['AND']);
164
-        if($closure !== null) $closure($this);
164
+        if ($closure !== null) $closure($this);
165 165
 
166 166
         return $this;
167 167
     }
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
      * @return WhereQuery
402 402
      * @throws InvalidWhereQueryCriteriaException
403 403
      */
404
-    public function whereNoXSpam(){
404
+    public function whereNoXSpam() {
405 405
         return $this->where("CUSTOM X-Spam-Flag NO");
406 406
     }
407 407
 
@@ -409,7 +409,7 @@  discard block
 block discarded – undo
409 409
      * @return WhereQuery
410 410
      * @throws InvalidWhereQueryCriteriaException
411 411
      */
412
-    public function whereIsXSpam(){
412
+    public function whereIsXSpam() {
413 413
         return $this->where("CUSTOM X-Spam-Flag YES");
414 414
     }
415 415
 
@@ -419,7 +419,7 @@  discard block
 block discarded – undo
419 419
      * @return WhereQuery
420 420
      * @throws InvalidWhereQueryCriteriaException
421 421
      */
422
-    public function whereLanguage($country_code){
422
+    public function whereLanguage($country_code) {
423 423
         return $this->where("Content-Language $country_code");
424 424
     }
425 425
 }
426 426
\ No newline at end of file
Please login to merge, or discard this patch.
src/ClientManager.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -68,17 +68,17 @@  discard block
 block discarded – undo
68 68
     public static function get($key, $default = null) {
69 69
         $parts = explode('.', $key);
70 70
         $value = null;
71
-        foreach($parts as $part) {
72
-            if($value === null) {
73
-                if(isset(self::$config[$part])) {
71
+        foreach ($parts as $part) {
72
+            if ($value === null) {
73
+                if (isset(self::$config[$part])) {
74 74
                     $value = self::$config[$part];
75
-                }else{
75
+                }else {
76 76
                     break;
77 77
                 }
78
-            }else{
79
-                if(isset($value[$part])) {
78
+            }else {
79
+                if (isset($value[$part])) {
80 80
                     $value = $value[$part];
81
-                }else{
81
+                }else {
82 82
                     break;
83 83
                 }
84 84
             }
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
      */
172 172
     public function setConfig($config) {
173 173
 
174
-        if(is_array($config) === false) {
174
+        if (is_array($config) === false) {
175 175
             $config = require $config;
176 176
         }
177 177
 
@@ -181,17 +181,17 @@  discard block
 block discarded – undo
181 181
         $vendor_config = require $path;
182 182
         $config = $this->array_merge_recursive_distinct($vendor_config, $config);
183 183
 
184
-        if(is_array($config)){
185
-            if(isset($config['default'])){
186
-                if(isset($config['accounts']) && $config['default'] != false){
184
+        if (is_array($config)) {
185
+            if (isset($config['default'])) {
186
+                if (isset($config['accounts']) && $config['default'] != false) {
187 187
 
188 188
                     $default_config = $vendor_config['accounts']['default'];
189
-                    if(isset($config['accounts'][$config['default']])){
189
+                    if (isset($config['accounts'][$config['default']])) {
190 190
                         $default_config = array_merge($default_config, $config['accounts'][$config['default']]);
191 191
                     }
192 192
 
193
-                    if(is_array($config['accounts'])){
194
-                        foreach($config['accounts'] as $account_key => $account){
193
+                    if (is_array($config['accounts'])) {
194
+                        foreach ($config['accounts'] as $account_key => $account) {
195 195
                             $config['accounts'][$account_key] = array_merge($default_config, $account);
196 196
                         }
197 197
                     }
@@ -227,24 +227,24 @@  discard block
 block discarded – undo
227 227
         $arrays = func_get_args();
228 228
         $base = array_shift($arrays);
229 229
 
230
-        if(!is_array($base)) $base = empty($base) ? array() : array($base);
230
+        if (!is_array($base)) $base = empty($base) ? array() : array($base);
231 231
 
232
-        foreach($arrays as $append) {
232
+        foreach ($arrays as $append) {
233 233
 
234
-            if(!is_array($append)) $append = array($append);
234
+            if (!is_array($append)) $append = array($append);
235 235
 
236
-            foreach($append as $key => $value) {
236
+            foreach ($append as $key => $value) {
237 237
 
238
-                if(!array_key_exists($key, $base) and !is_numeric($key)) {
238
+                if (!array_key_exists($key, $base) and !is_numeric($key)) {
239 239
                     $base[$key] = $append[$key];
240 240
                     continue;
241 241
                 }
242 242
 
243
-                if(is_array($value) or is_array($base[$key])) {
243
+                if (is_array($value) or is_array($base[$key])) {
244 244
                     $base[$key] = $this->array_merge_recursive_distinct($base[$key], $append[$key]);
245
-                } else if(is_numeric($key)) {
246
-                    if(!in_array($value, $base)) $base[] = $value;
247
-                } else {
245
+                }else if (is_numeric($key)) {
246
+                    if (!in_array($value, $base)) $base[] = $value;
247
+                }else {
248 248
                     $base[$key] = $value;
249 249
                 }
250 250
 
Please login to merge, or discard this patch.
src/Client.php 1 patch
Spacing   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -168,11 +168,11 @@  discard block
 block discarded – undo
168 168
      * @param array $config
169 169
      * @param array $default_config
170 170
      */
171
-    private function setAccountConfig($key, $config, $default_config){
171
+    private function setAccountConfig($key, $config, $default_config) {
172 172
         $value = $this->default_account_config[$key];
173
-        if(isset($config[$key])) {
173
+        if (isset($config[$key])) {
174 174
             $value = $config[$key];
175
-        }elseif(isset($default_config[$key])) {
175
+        }elseif (isset($default_config[$key])) {
176 176
             $value = $default_config[$key];
177 177
         }
178 178
         $this->$key = $value;
@@ -184,9 +184,9 @@  discard block
 block discarded – undo
184 184
      */
185 185
     protected function setEventsFromConfig($config) {
186 186
         $this->events = ClientManager::get("events");
187
-        if(isset($config['events'])){
188
-            if(isset($config['events'])) {
189
-                foreach($config['events'] as $section => $events) {
187
+        if (isset($config['events'])) {
188
+            if (isset($config['events'])) {
189
+                foreach ($config['events'] as $section => $events) {
190 190
                     $this->events[$section] = array_merge($this->events[$section], $events);
191 191
                 }
192 192
             }
@@ -200,45 +200,45 @@  discard block
 block discarded – undo
200 200
      * @throws MaskNotFoundException
201 201
      */
202 202
     protected function setMaskFromConfig($config) {
203
-        $default_config  = ClientManager::get("masks");
203
+        $default_config = ClientManager::get("masks");
204 204
 
205
-        if(isset($config['masks'])){
206
-            if(isset($config['masks']['message'])) {
207
-                if(class_exists($config['masks']['message'])) {
205
+        if (isset($config['masks'])) {
206
+            if (isset($config['masks']['message'])) {
207
+                if (class_exists($config['masks']['message'])) {
208 208
                     $this->default_message_mask = $config['masks']['message'];
209
-                }else{
209
+                }else {
210 210
                     throw new MaskNotFoundException("Unknown mask provided: ".$config['masks']['message']);
211 211
                 }
212
-            }else{
213
-                if(class_exists($default_config['message'])) {
212
+            }else {
213
+                if (class_exists($default_config['message'])) {
214 214
                     $this->default_message_mask = $default_config['message'];
215
-                }else{
215
+                }else {
216 216
                     throw new MaskNotFoundException("Unknown mask provided: ".$default_config['message']);
217 217
                 }
218 218
             }
219
-            if(isset($config['masks']['attachment'])) {
220
-                if(class_exists($config['masks']['attachment'])) {
219
+            if (isset($config['masks']['attachment'])) {
220
+                if (class_exists($config['masks']['attachment'])) {
221 221
                     $this->default_message_mask = $config['masks']['attachment'];
222
-                }else{
222
+                }else {
223 223
                     throw new MaskNotFoundException("Unknown mask provided: ".$config['masks']['attachment']);
224 224
                 }
225
-            }else{
226
-                if(class_exists($default_config['attachment'])) {
225
+            }else {
226
+                if (class_exists($default_config['attachment'])) {
227 227
                     $this->default_message_mask = $default_config['attachment'];
228
-                }else{
228
+                }else {
229 229
                     throw new MaskNotFoundException("Unknown mask provided: ".$default_config['attachment']);
230 230
                 }
231 231
             }
232
-        }else{
233
-            if(class_exists($default_config['message'])) {
232
+        }else {
233
+            if (class_exists($default_config['message'])) {
234 234
                 $this->default_message_mask = $default_config['message'];
235
-            }else{
235
+            }else {
236 236
                 throw new MaskNotFoundException("Unknown mask provided: ".$default_config['message']);
237 237
             }
238 238
 
239
-            if(class_exists($default_config['attachment'])) {
239
+            if (class_exists($default_config['attachment'])) {
240 240
                 $this->default_message_mask = $default_config['attachment'];
241
-            }else{
241
+            }else {
242 242
                 throw new MaskNotFoundException("Unknown mask provided: ".$default_config['attachment']);
243 243
             }
244 244
         }
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
             $timeout = $this->connection !== false ? $this->connection->getConnectionTimeout() : null;
303 303
             $this->connection = new ImapProtocol($this->validate_cert);
304 304
             $this->connection->setConnectionTimeout($timeout);
305
-        }else{
305
+        }else {
306 306
             if (extension_loaded('imap') === false) {
307 307
                 throw new ConnectionFailedException("connection setup failed", 0, new ProtocolNotSupportedException($protocol." is an unsupported protocol"));
308 308
             }
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
         try {
329 329
             if ($this->authentication == "oauth") {
330 330
                 $this->connection->authenticate($this->username, $this->password);
331
-            }else{
331
+            }else {
332 332
                 $this->connection->login($this->username, $this->password);
333 333
             }
334 334
         } catch (\Exception $e) {
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
         $pattern = $parent_folder.($hierarchical ? '%' : '*');
379 379
         $items = $this->connection->folders('', $pattern);
380 380
 
381
-        if(is_array($items)){
381
+        if (is_array($items)) {
382 382
             foreach ($items as $folder_name => $item) {
383 383
                 $folder = new Folder($this, $folder_name, $item["delimiter"], $item["flags"]);
384 384
 
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
             }
394 394
 
395 395
             return $folders;
396
-        }else{
396
+        }else {
397 397
             throw new FolderFetchingException("failed to fetch any folders");
398 398
         }
399 399
     }
@@ -427,10 +427,10 @@  discard block
 block discarded – undo
427 427
     public function createFolder($folder, $expunge = true) {
428 428
         $this->checkConnection();
429 429
         $status = $this->connection->createFolder($folder);
430
-        if($expunge) $this->expunge();
430
+        if ($expunge) $this->expunge();
431 431
 
432 432
         $folder = $this->getFolder($folder);
433
-        if($status && $folder) {
433
+        if ($status && $folder) {
434 434
             $event = $this->getEvent("folder", "new");
435 435
             $event::dispatch($folder);
436 436
         }
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
      *
455 455
      * @return Folder
456 456
      */
457
-    public function getFolderPath(){
457
+    public function getFolderPath() {
458 458
         return $this->active_folder;
459 459
     }
460 460
 
@@ -509,14 +509,14 @@  discard block
 block discarded – undo
509 509
      *
510 510
      * @return int
511 511
      */
512
-    public function getTimeout($type){
512
+    public function getTimeout($type) {
513 513
         return $this->connection->getConnectionTimeout();
514 514
     }
515 515
 
516 516
     /**
517 517
      * @return string
518 518
      */
519
-    public function getDefaultMessageMask(){
519
+    public function getDefaultMessageMask() {
520 520
         return $this->default_message_mask;
521 521
     }
522 522
 
@@ -524,7 +524,7 @@  discard block
 block discarded – undo
524 524
      * @param $section
525 525
      * @return array
526 526
      */
527
-    public function getDefaultEvents($section){
527
+    public function getDefaultEvents($section) {
528 528
         return $this->events[$section];
529 529
     }
530 530
 
@@ -535,7 +535,7 @@  discard block
 block discarded – undo
535 535
      * @throws MaskNotFoundException
536 536
      */
537 537
     public function setDefaultMessageMask($mask) {
538
-        if(class_exists($mask)) {
538
+        if (class_exists($mask)) {
539 539
             $this->default_message_mask = $mask;
540 540
 
541 541
             return $this;
@@ -547,7 +547,7 @@  discard block
 block discarded – undo
547 547
     /**
548 548
      * @return string
549 549
      */
550
-    public function getDefaultAttachmentMask(){
550
+    public function getDefaultAttachmentMask() {
551 551
         return $this->default_attachment_mask;
552 552
     }
553 553
 
@@ -558,7 +558,7 @@  discard block
 block discarded – undo
558 558
      * @throws MaskNotFoundException
559 559
      */
560 560
     public function setDefaultAttachmentMask($mask) {
561
-        if(class_exists($mask)) {
561
+        if (class_exists($mask)) {
562 562
             $this->default_attachment_mask = $mask;
563 563
 
564 564
             return $this;
Please login to merge, or discard this patch.
examples/message_table.blade.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,8 +26,8 @@
 block discarded – undo
26 26
     </tr>
27 27
     </thead>
28 28
     <tbody>
29
-    <?php if($paginator->count() > 0): ?>
30
-        <?php foreach($paginator as $message): ?>
29
+    <?php if ($paginator->count() > 0): ?>
30
+        <?php foreach ($paginator as $message): ?>
31 31
             <tr>
32 32
                 <td><?php echo $message->getUid(); ?></td>
33 33
                 <td><?php echo $message->getSubject(); ?></td>
Please login to merge, or discard this patch.
examples/folder_structure.blade.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
24 24
     </tr>
25 25
     </thead>
26 26
     <tbody>
27
-    <?php if($paginator->count() > 0): ?>
28
-        <?php foreach($paginator as $folder): ?>
27
+    <?php if ($paginator->count() > 0): ?>
28
+        <?php foreach ($paginator as $folder): ?>
29 29
                 <tr>
30 30
                     <td><?php echo $folder->name; ?></td>
31 31
                     <td><?php echo $folder->search()->unseen()->setFetchBody(false)->count(); ?></td>
Please login to merge, or discard this patch.
src/Attachment.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
         $this->part = $part;
93 93
 
94 94
         $default_mask = $this->oMessage->getClient()->getDefaultAttachmentMask();
95
-        if($default_mask != null) {
95
+        if ($default_mask != null) {
96 96
             $this->mask = $default_mask;
97 97
         }
98 98
 
@@ -109,10 +109,10 @@  discard block
 block discarded – undo
109 109
      * @throws MethodNotFoundException
110 110
      */
111 111
     public function __call($method, $arguments) {
112
-        if(strtolower(substr($method, 0, 3)) === 'get') {
112
+        if (strtolower(substr($method, 0, 3)) === 'get') {
113 113
             $name = Str::snake(substr($method, 3));
114 114
 
115
-            if(isset($this->attributes[$name])) {
115
+            if (isset($this->attributes[$name])) {
116 116
                 return $this->attributes[$name];
117 117
             }
118 118
 
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
      * @return mixed|null
147 147
      */
148 148
     public function __get($name) {
149
-        if(isset($this->attributes[$name])) {
149
+        if (isset($this->attributes[$name])) {
150 150
             return $this->attributes[$name];
151 151
         }
152 152
 
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
         if (IMAP::ATTACHMENT_TYPE_MESSAGE == $this->part->type) {
216 216
             if ($this->part->ifdescription) {
217 217
                 $this->setName($this->part->description);
218
-            } else {
218
+            }else {
219 219
                 $this->setName($this->part->subtype);
220 220
             }
221 221
         }
@@ -241,9 +241,9 @@  discard block
 block discarded – undo
241 241
     public function setName($name) {
242 242
         $decoder = $this->config['decoder']['attachment'];
243 243
         if ($name !== null) {
244
-            if($decoder === 'utf-8' && extension_loaded('imap')) {
244
+            if ($decoder === 'utf-8' && extension_loaded('imap')) {
245 245
                 $this->name = \imap_utf8($name);
246
-            }else{
246
+            }else {
247 247
                 $this->name = mb_decode_mimeheader($name);
248 248
             }
249 249
         }
@@ -252,16 +252,16 @@  discard block
 block discarded – undo
252 252
     /**
253 253
      * @return string|null
254 254
      */
255
-    public function getMimeType(){
255
+    public function getMimeType() {
256 256
         return (new \finfo())->buffer($this->getContent(), FILEINFO_MIME_TYPE);
257 257
     }
258 258
 
259 259
     /**
260 260
      * @return string|null
261 261
      */
262
-    public function getExtension(){
262
+    public function getExtension() {
263 263
         $deprecated_guesser = "\Symfony\Component\HttpFoundation\File\MimeType\ExtensionGuesser";
264
-        if (class_exists($deprecated_guesser) !== false){
264
+        if (class_exists($deprecated_guesser) !== false) {
265 265
             return $deprecated_guesser::getInstance()->guess($this->getMimeType());
266 266
         }
267 267
         $guesser = "\Symfony\Component\Mime\MimeTypes";
@@ -272,14 +272,14 @@  discard block
 block discarded – undo
272 272
     /**
273 273
      * @return array
274 274
      */
275
-    public function getAttributes(){
275
+    public function getAttributes() {
276 276
         return $this->attributes;
277 277
     }
278 278
 
279 279
     /**
280 280
      * @return Message
281 281
      */
282
-    public function getMessage(){
282
+    public function getMessage() {
283 283
         return $this->oMessage;
284 284
     }
285 285
 
@@ -287,8 +287,8 @@  discard block
 block discarded – undo
287 287
      * @param $mask
288 288
      * @return $this
289 289
      */
290
-    public function setMask($mask){
291
-        if(class_exists($mask)){
290
+    public function setMask($mask) {
291
+        if (class_exists($mask)) {
292 292
             $this->mask = $mask;
293 293
         }
294 294
 
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
     /**
299 299
      * @return string
300 300
      */
301
-    public function getMask(){
301
+    public function getMask() {
302 302
         return $this->mask;
303 303
     }
304 304
 
@@ -309,9 +309,9 @@  discard block
 block discarded – undo
309 309
      * @return mixed
310 310
      * @throws MaskNotFoundException
311 311
      */
312
-    public function mask($mask = null){
312
+    public function mask($mask = null) {
313 313
         $mask = $mask !== null ? $mask : $this->mask;
314
-        if(class_exists($mask)){
314
+        if (class_exists($mask)) {
315 315
             return new $mask($this);
316 316
         }
317 317
 
Please login to merge, or discard this patch.
src/Header.php 1 patch
Spacing   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -65,10 +65,10 @@  discard block
 block discarded – undo
65 65
      * @throws MethodNotFoundException
66 66
      */
67 67
     public function __call($method, $arguments) {
68
-        if(strtolower(substr($method, 0, 3)) === 'get') {
68
+        if (strtolower(substr($method, 0, 3)) === 'get') {
69 69
             $name = preg_replace('/(.)(?=[A-Z])/u', '$1_', substr(strtolower($method), 3));
70 70
 
71
-            if(in_array($name, array_keys($this->attributes))) {
71
+            if (in_array($name, array_keys($this->attributes))) {
72 72
                 return $this->attributes[$name];
73 73
             }
74 74
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      * @return mixed|null
93 93
      */
94 94
     public function get($name) {
95
-        if(isset($this->attributes[$name])) {
95
+        if (isset($this->attributes[$name])) {
96 96
             return $this->attributes[$name];
97 97
         }
98 98
 
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
     public function find($pattern) {
108 108
         if (preg_match_all($pattern, $this->raw, $matches)) {
109 109
             if (isset($matches[1])) {
110
-                if(count($matches[1]) > 0) {
110
+                if (count($matches[1]) > 0) {
111 111
                     return $matches[1][0];
112 112
                 }
113 113
             }
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
      * Parse the raw headers
120 120
      * @throws InvalidMessageDateException
121 121
      */
122
-    protected function parse(){
122
+    protected function parse() {
123 123
         $header = $this->rfc822_parse_headers($this->raw);
124 124
 
125 125
         $this->extractAddresses($header);
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
         $this->parseDate($header);
138 138
         foreach ($header as $key => $value) {
139 139
             $key = trim(rtrim(strtolower($key)));
140
-            if(!isset($this->attributes[$key])){
140
+            if (!isset($this->attributes[$key])) {
141 141
                 $this->attributes[$key] = $value;
142 142
             }
143 143
         }
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
      *
154 154
      * @return object
155 155
      */
156
-    public function rfc822_parse_headers($raw_headers){
156
+    public function rfc822_parse_headers($raw_headers) {
157 157
         $headers = [];
158 158
         $imap_headers = [];
159 159
         if (extension_loaded('imap')) {
@@ -162,13 +162,13 @@  discard block
 block discarded – undo
162 162
 
163 163
         $lines = explode("\r\n", $raw_headers);
164 164
         $prev_header = null;
165
-        foreach($lines as $line) {
165
+        foreach ($lines as $line) {
166 166
             if (substr($line, 0, 1) === "\t") {
167 167
                 $line = substr($line, 2);
168 168
                 if ($prev_header !== null) {
169 169
                     $headers[$prev_header][] = $line;
170 170
                 }
171
-            }else{
171
+            }else {
172 172
                 if (($pos = strpos($line, ":")) > 0) {
173 173
                     $key = strtolower(substr($line, 0, $pos));
174 174
                     $value = trim(rtrim(strtolower(substr($line, $pos + 1))));
@@ -178,10 +178,10 @@  discard block
 block discarded – undo
178 178
             }
179 179
         }
180 180
 
181
-        foreach($headers as $key => $values) {
181
+        foreach ($headers as $key => $values) {
182 182
             if (isset($imap_headers[$key])) continue;
183 183
             $value = null;
184
-            switch($key){
184
+            switch ($key) {
185 185
                 case 'from':
186 186
                 case 'to':
187 187
                 case 'cc':
@@ -208,12 +208,12 @@  discard block
 block discarded – undo
208 208
      * @return array The decoded elements are returned in an array of objects, where each
209 209
      * object has two properties, charset and text.
210 210
      */
211
-    public function mime_header_decode($text){
211
+    public function mime_header_decode($text) {
212 212
         if (extension_loaded('imap')) {
213 213
             return \imap_mime_header_decode($text);
214 214
         }
215 215
         $charset = $this->getEncoding($text);
216
-        return [(object)[
216
+        return [(object) [
217 217
             "charset" => $charset,
218 218
             "text" => $this->convertEncoding($text, $charset)
219 219
         ]];
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
         try {
268 268
             if (function_exists('iconv') && $from != 'UTF-7' && $to != 'UTF-7') {
269 269
                 return iconv($from, $to, $str);
270
-            } else {
270
+            }else {
271 271
                 if (!$from) {
272 272
                     return mb_convert_encoding($str, $to);
273 273
                 }
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
             if (strstr($from, '-')) {
278 278
                 $from = str_replace('-', '', $from);
279 279
                 return $this->convertEncoding($str, $from, $to);
280
-            } else {
280
+            }else {
281 281
                 return $str;
282 282
             }
283 283
         }
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
             }
300 300
         }elseif (property_exists($structure, 'charset')) {
301 301
             return EncodingAliases::get($structure->charset, $this->fallback_encoding);
302
-        }elseif (is_string($structure) === true){
302
+        }elseif (is_string($structure) === true) {
303 303
             return mb_detect_encoding($structure);
304 304
         }
305 305
 
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
         $decoder = $this->config['decoder']['message'];
318 318
 
319 319
         if ($value !== null) {
320
-            if($decoder === 'utf-8' && extension_loaded('imap')) {
320
+            if ($decoder === 'utf-8' && extension_loaded('imap')) {
321 321
                 $value = \imap_utf8($value);
322 322
                 if (strpos(strtolower($value), '=?utf-8?') === 0) {
323 323
                     $value = mb_decode_mimeheader($value);
@@ -325,14 +325,14 @@  discard block
 block discarded – undo
325 325
                 if ($this->notDecoded($original_value, $value)) {
326 326
                     $decoded_value = $this->mime_header_decode($value);
327 327
                     if (count($decoded_value) > 0) {
328
-                        if(property_exists($decoded_value[0], "text")) {
328
+                        if (property_exists($decoded_value[0], "text")) {
329 329
                             $value = $decoded_value[0]->text;
330 330
                         }
331 331
                     }
332 332
                 }
333
-            }elseif($decoder === 'iconv') {
333
+            }elseif ($decoder === 'iconv') {
334 334
                 $value = iconv_mime_decode($value);
335
-            }else{
335
+            }else {
336 336
                 $value = mb_decode_mimeheader($value);
337 337
             }
338 338
 
@@ -352,8 +352,8 @@  discard block
 block discarded – undo
352 352
      * Try to extract the priority from a given raw header string
353 353
      */
354 354
     private function findPriority() {
355
-        if(($priority = $this->get("x-priority")) === null) return;
356
-        switch($priority){
355
+        if (($priority = $this->get("x-priority")) === null) return;
356
+        switch ($priority) {
357 357
             case IMAP::MESSAGE_PRIORITY_HIGHEST;
358 358
                 $priority = IMAP::MESSAGE_PRIORITY_HIGHEST;
359 359
                 break;
@@ -385,12 +385,12 @@  discard block
 block discarded – undo
385 385
      */
386 386
     private function decodeAddresses($values) {
387 387
         $addresses = [];
388
-        foreach($values as $address) {
388
+        foreach ($values as $address) {
389 389
             if (preg_match(
390 390
                 '/^(?:(?P<name>.+)\s)?(?(name)<|<?)(?P<email>[^\s]+?)(?(name)>|>?)$/',
391 391
                 $address,
392 392
                 $matches
393
-            )){
393
+            )) {
394 394
                 $name = trim(rtrim($matches["name"]));
395 395
                 $email = trim(rtrim($matches["email"]));
396 396
                 list($mailbox, $host) = explode("@", $email);
@@ -409,7 +409,7 @@  discard block
 block discarded – undo
409 409
      * @param object $header
410 410
      */
411 411
     private function extractAddresses($header) {
412
-        foreach(['from', 'to', 'cc', 'bcc', 'reply_to', 'sender', 'in_reply_to'] as $key){
412
+        foreach (['from', 'to', 'cc', 'bcc', 'reply_to', 'sender', 'in_reply_to'] as $key) {
413 413
             if (property_exists($header, $key)) {
414 414
                 $this->attributes[$key] = $this->parseAddresses($header->$key);
415 415
             }
@@ -436,10 +436,10 @@  discard block
 block discarded – undo
436 436
             }
437 437
             if (!property_exists($address, 'personal')) {
438 438
                 $address->personal = false;
439
-            } else {
439
+            }else {
440 440
                 $personalParts = $this->mime_header_decode($address->personal);
441 441
 
442
-                if(is_array($personalParts)) {
442
+                if (is_array($personalParts)) {
443 443
                     $address->personal = '';
444 444
                     foreach ($personalParts as $p) {
445 445
                         $address->personal .= $this->convertEncoding($p->text, $this->getEncoding($p));
@@ -456,15 +456,15 @@  discard block
 block discarded – undo
456 456
         return $addresses;
457 457
     }
458 458
 
459
-    private function extractHeaderExtensions(){
459
+    private function extractHeaderExtensions() {
460 460
         foreach ($this->attributes as $key => $value) {
461 461
             if (is_string($value) === true) {
462
-                if (($pos = strpos($value, ";")) !== false){
462
+                if (($pos = strpos($value, ";")) !== false) {
463 463
                     $original = substr($value, 0, $pos);
464 464
                     $this->attributes[$key] = trim(rtrim($original));
465 465
                     $extensions = explode(";", substr($value, $pos + 1));
466
-                    foreach($extensions as $extension) {
467
-                        if (($pos = strpos($extension, "=")) !== false){
466
+                    foreach ($extensions as $extension) {
467
+                        if (($pos = strpos($extension, "=")) !== false) {
468 468
                             $key = substr($extension, 0, $pos);
469 469
                             $value = substr($extension, $pos + 1);
470 470
                             $value = str_replace('"', "", $value);
@@ -501,7 +501,7 @@  discard block
 block discarded – undo
501 501
             $parsed_date = null;
502 502
             $date = $header->date;
503 503
 
504
-            if(preg_match('/\+0580/', $date)) {
504
+            if (preg_match('/\+0580/', $date)) {
505 505
                 $date = str_replace('+0580', '+0530', $date);
506 506
             }
507 507
 
@@ -524,7 +524,7 @@  discard block
 block discarded – undo
524 524
                         $date = trim(array_pop($array));
525 525
                         break;
526 526
                 }
527
-                try{
527
+                try {
528 528
                     $parsed_date = Carbon::parse($date);
529 529
                 } catch (\Exception $_e) {
530 530
                     throw new InvalidMessageDateException("Invalid message date. ID:".$this->get("message_id"), 1100, $e);
Please login to merge, or discard this patch.