Passed
Push — master ( aad7db...4b5f38 )
by Malte
04:57 queued 02:17
created
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.
src/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/Connection/Protocols/LegacyProtocol.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
             throw new AuthFailedException($message);
86 86
         }
87 87
 
88
-        if(!$this->stream) {
88
+        if (!$this->stream) {
89 89
             $errors = \imap_errors();
90 90
             $message = implode("; ", (is_array($errors) ? $errors : array()));
91 91
             throw new AuthFailedException($message);
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
         if (!$this->cert_validation) {
117 117
             $address .= '/novalidate-cert';
118 118
         }
119
-        if (in_array($this->encryption,['tls', 'notls', 'ssl'])) {
119
+        if (in_array($this->encryption, ['tls', 'notls', 'ssl'])) {
120 120
             $address .= '/'.$this->encryption;
121 121
         } elseif ($this->encryption === "starttls") {
122 122
             $address .= '/tls';
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      *
145 145
      * @return bool
146 146
      */
147
-    public function connected(){
147
+    public function connected() {
148 148
         return !$this->stream;
149 149
     }
150 150
 
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
      *
211 211
      * @return array
212 212
      */
213
-    public function headers($uids, $rfc = "RFC822"){
213
+    public function headers($uids, $rfc = "RFC822") {
214 214
         $headers = \imap_fetchheader($this->stream, $uids[0], IMAP::FT_UID);
215 215
         return [$uids[0] => $headers];
216 216
     }
@@ -221,13 +221,13 @@  discard block
 block discarded – undo
221 221
      *
222 222
      * @return array
223 223
      */
224
-    public function flags($uids){
224
+    public function flags($uids) {
225 225
         $flags = \imap_fetch_overview($this->stream, $uids[0], IMAP::FT_UID);
226 226
         $result = [];
227 227
         if (is_array($flags) && isset($flags[0])) {
228 228
             $flags = (array) $flags[0];
229
-            foreach($flags as $flag => $value) {
230
-                if ($value === 1 && in_array($flag, ["size", "uid", "msgno", "update"]) === false){
229
+            foreach ($flags as $flag => $value) {
230
+                if ($value === 1 && in_array($flag, ["size", "uid", "msgno", "update"]) === false) {
231 231
                     $result[] = "\\".ucfirst($flag);
232 232
                 }
233 233
             }
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
         if ($id === null) {
246 246
             $overview = $this->overview("1:*");
247 247
             $uids = [];
248
-            foreach($overview as $set){
248
+            foreach ($overview as $set) {
249 249
                 $uids[$set->msgno] = $set->uid;
250 250
             }
251 251
             return $uids;
@@ -285,12 +285,12 @@  discard block
 block discarded – undo
285 285
         $result = [];
286 286
 
287 287
         $items = \imap_getmailboxes($this->stream, $this->getAddress(), $reference.$folder);
288
-        if(is_array($items)){
288
+        if (is_array($items)) {
289 289
             foreach ($items as $item) {
290 290
                 $name = $this->decodeFolderName($item->name);
291 291
                 $result[$name] = ['delimiter' => $item->delimiter, 'flags' => []];
292 292
             }
293
-        }else{
293
+        }else {
294 294
             throw new RuntimeException(\imap_last_error());
295 295
         }
296 296
 
@@ -311,9 +311,9 @@  discard block
 block discarded – undo
311 311
     public function store(array $flags, $from, $to = null, $mode = null, $silent = true) {
312 312
         $flag = "\\".trim(is_array($flags) ? implode(" \\", $flags) : $flags);
313 313
 
314
-        if ($mode == "+"){
314
+        if ($mode == "+") {
315 315
             $status = \imap_setflag_full($this->stream, $from, $flag, IMAP::SE_UID);
316
-        }else{
316
+        }else {
317 317
             $status = \imap_clearflag_full($this->stream, $from, $flag, IMAP::SE_UID);
318 318
         }
319 319
 
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
      */
336 336
     public function appendMessage($folder, $message, $flags = null, $date = null) {
337 337
         if ($date != null) {
338
-            if ($date instanceof \Carbon\Carbon){
338
+            if ($date instanceof \Carbon\Carbon) {
339 339
                 $date = $date->format('d-M-Y H:i:s O');
340 340
             }
341 341
             return \imap_append($this->stream, $folder, $message, $flags, $date);
@@ -457,14 +457,14 @@  discard block
 block discarded – undo
457 457
     /**
458 458
      * Enable the debug mode
459 459
      */
460
-    public function enableDebug(){
460
+    public function enableDebug() {
461 461
         $this->debug = true;
462 462
     }
463 463
 
464 464
     /**
465 465
      * Disable the debug mode
466 466
      */
467
-    public function disableDebug(){
467
+    public function disableDebug() {
468 468
         $this->debug = false;
469 469
     }
470 470
 
Please login to merge, or discard this patch.
src/Traits/HasEvents.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
      *
66 66
      * @return array
67 67
      */
68
-    public function getEvents(){
68
+    public function getEvents() {
69 69
         return $this->events;
70 70
     }
71 71
 
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.
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/Support/Masks/Mask.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     public function __construct($parent) {
44 44
         $this->parent = $parent;
45 45
 
46
-        if(method_exists($this->parent, 'getAttributes')){
46
+        if (method_exists($this->parent, 'getAttributes')) {
47 47
             $this->attributes = array_merge($this->attributes, $this->parent->getAttributes());
48 48
         }
49 49
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     /**
54 54
      * Boot method made to be used by any custom mask
55 55
      */
56
-    protected function boot(){}
56
+    protected function boot() {}
57 57
 
58 58
     /**
59 59
      * Call dynamic attribute setter and getter methods and inherit the parent calls
@@ -64,17 +64,17 @@  discard block
 block discarded – undo
64 64
      * @throws MethodNotFoundException
65 65
      */
66 66
     public function __call($method, $arguments) {
67
-        if(strtolower(substr($method, 0, 3)) === 'get') {
67
+        if (strtolower(substr($method, 0, 3)) === 'get') {
68 68
             $name = Str::snake(substr($method, 3));
69 69
 
70
-            if(isset($this->attributes[$name])) {
70
+            if (isset($this->attributes[$name])) {
71 71
                 return $this->attributes[$name];
72 72
             }
73 73
 
74 74
         }elseif (strtolower(substr($method, 0, 3)) === 'set') {
75 75
             $name = Str::snake(substr($method, 3));
76 76
 
77
-            if(isset($this->attributes[$name])) {
77
+            if (isset($this->attributes[$name])) {
78 78
                 $this->attributes[$name] = array_pop($arguments);
79 79
 
80 80
                 return $this->attributes[$name];
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 
83 83
         }
84 84
 
85
-        if(method_exists($this->parent, $method) === true){
85
+        if (method_exists($this->parent, $method) === true) {
86 86
             return call_user_func_array([$this->parent, $method], $arguments);
87 87
         }
88 88
 
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      * @return mixed|null
110 110
      */
111 111
     public function __get($name) {
112
-        if(isset($this->attributes[$name])) {
112
+        if (isset($this->attributes[$name])) {
113 113
             return $this->attributes[$name];
114 114
         }
115 115
 
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      *
122 122
      * @return mixed
123 123
      */
124
-    public function getParent(){
124
+    public function getParent() {
125 125
         return $this->parent;
126 126
     }
127 127
 
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      *
131 131
      * @return array
132 132
      */
133
-    public function getAttributes(){
133
+    public function getAttributes() {
134 134
         return $this->attributes;
135 135
     }
136 136
 
Please login to merge, or discard this patch.