Passed
Push — master ( 6b0532...91a83b )
by Malte
02:21
created
src/IMAP/Query/WhereQuery.php 2 patches
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function __call($name, $arguments) {
44 44
         $method = 'where'.ucfirst($name);
45
-        if(method_exists($this, $method) === true){
45
+        if (method_exists($this, $method) === true) {
46 46
             return call_user_func_array([$this, $method], $arguments);
47 47
         }
48 48
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     protected function validate_criteria($criteria) {
60 60
         $criteria = strtoupper($criteria);
61 61
 
62
-        if(in_array($criteria, $this->available_criteria) === false) {
62
+        if (in_array($criteria, $this->available_criteria) === false) {
63 63
             throw new InvalidWhereQueryCriteriaException();
64 64
         }
65 65
 
@@ -73,21 +73,21 @@  discard block
 block discarded – undo
73 73
      * @return $this
74 74
      */
75 75
     public function where($criteria, $value = null) {
76
-        if(is_array($criteria)){
77
-            foreach($criteria as $arguments){
78
-                if(count($arguments) == 1){
76
+        if (is_array($criteria)) {
77
+            foreach ($criteria as $arguments) {
78
+                if (count($arguments) == 1) {
79 79
                     $this->where($arguments[0]);
80
-                }elseif(count($arguments) == 2){
80
+                }elseif (count($arguments) == 2) {
81 81
                     $this->where($arguments[0], $arguments[1]);
82 82
                 }
83 83
             }
84
-        }else{
84
+        } else {
85 85
             $criteria = $this->validate_criteria($criteria);
86 86
             $value = $this->parse_value($value);
87 87
 
88
-            if($value === null || $value === ''){
88
+            if ($value === null || $value === '') {
89 89
                 $this->query->push([$criteria]);
90
-            }else{
90
+            } else {
91 91
                 $this->query->push([$criteria, $value]);
92 92
             }
93 93
         }
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      */
103 103
     public function orWhere(\Closure $closure = null) {
104 104
         $this->query->push(['OR']);
105
-        if($closure !== null) $closure($this);
105
+        if ($closure !== null) $closure($this);
106 106
 
107 107
         return $this;
108 108
     }
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
      */
115 115
     public function andWhere(\Closure $closure = null) {
116 116
         $this->query->push(['AND']);
117
-        if($closure !== null) $closure($this);
117
+        if ($closure !== null) $closure($this);
118 118
 
119 119
         return $this;
120 120
     }
Please login to merge, or discard this patch.
Braces   +9 added lines, -5 removed lines patch added patch discarded remove patch
@@ -77,17 +77,17 @@  discard block
 block discarded – undo
77 77
             foreach($criteria as $arguments){
78 78
                 if(count($arguments) == 1){
79 79
                     $this->where($arguments[0]);
80
-                }elseif(count($arguments) == 2){
80
+                } elseif(count($arguments) == 2){
81 81
                     $this->where($arguments[0], $arguments[1]);
82 82
                 }
83 83
             }
84
-        }else{
84
+        } else{
85 85
             $criteria = $this->validate_criteria($criteria);
86 86
             $value = $this->parse_value($value);
87 87
 
88 88
             if($value === null || $value === ''){
89 89
                 $this->query->push([$criteria]);
90
-            }else{
90
+            } else{
91 91
                 $this->query->push([$criteria, $value]);
92 92
             }
93 93
         }
@@ -102,7 +102,9 @@  discard block
 block discarded – undo
102 102
      */
103 103
     public function orWhere(\Closure $closure = null) {
104 104
         $this->query->push(['OR']);
105
-        if($closure !== null) $closure($this);
105
+        if($closure !== null) {
106
+            $closure($this);
107
+        }
106 108
 
107 109
         return $this;
108 110
     }
@@ -114,7 +116,9 @@  discard block
 block discarded – undo
114 116
      */
115 117
     public function andWhere(\Closure $closure = null) {
116 118
         $this->query->push(['AND']);
117
-        if($closure !== null) $closure($this);
119
+        if($closure !== null) {
120
+            $closure($this);
121
+        }
118 122
 
119 123
         return $this;
120 124
     }
Please login to merge, or discard this patch.
src/IMAP/Query/Query.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     /**
72 72
      * Instance boot method for additional functionality
73 73
      */
74
-    protected function boot(){}
74
+    protected function boot() {}
75 75
 
76 76
     /**
77 77
      * Parse a given value
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
      *
80 80
      * @return string
81 81
      */
82
-    protected function parse_value($value){
83
-        switch(true){
82
+    protected function parse_value($value) {
83
+        switch (true) {
84 84
             case $value instanceof \Carbon\Carbon:
85 85
                 $value = $value->format('d M y');
86 86
                 break;
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      * @throws MessageSearchValidationException
98 98
      */
99 99
     protected function parse_date($date) {
100
-        if($date instanceof \Carbon\Carbon) return $date;
100
+        if ($date instanceof \Carbon\Carbon) return $date;
101 101
 
102 102
         try {
103 103
             $date = Carbon::parse($date);
@@ -126,13 +126,13 @@  discard block
 block discarded – undo
126 126
                 $available_messages = collect($available_messages);
127 127
                 $options = config('imap.options');
128 128
 
129
-                if(strtolower($options['fetch_order']) === 'desc'){
129
+                if (strtolower($options['fetch_order']) === 'desc') {
130 130
                     $available_messages = $available_messages->reverse();
131 131
                 }
132 132
 
133 133
                 $available_messages->forPage($this->page, $this->limit)->each(function($msgno, $msglist) use(&$messages, $options) {
134 134
                     $oMessage = new Message($msgno, $msglist, $this->getClient(), $this->getFetchOptions(), $this->getFetchBody(), $this->getFetchAttachment());
135
-                    switch ($options['message_key']){
135
+                    switch ($options['message_key']) {
136 136
                         case 'number':
137 137
                             $message_key = $oMessage->getMessageNo();
138 138
                             break;
@@ -167,9 +167,9 @@  discard block
 block discarded – undo
167 167
             if (count($statement) == 1) {
168 168
                 $query .= $statement[0];
169 169
             } else {
170
-                if($statement[1] === null){
170
+                if ($statement[1] === null) {
171 171
                     $query .= $statement[0];
172
-                }else{
172
+                } else {
173 173
                     $query .= $statement[0].' "'.$statement[1].'"';
174 174
                 }
175 175
             }
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
      * @return $this
199 199
      */
200 200
     public function limit($limit, $page = 1) {
201
-        if($page >= 1) $this->page = $page;
201
+        if ($page >= 1) $this->page = $page;
202 202
         $this->limit = $limit;
203 203
 
204 204
         return $this;
Please login to merge, or discard this patch.
Braces   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -97,7 +97,9 @@  discard block
 block discarded – undo
97 97
      * @throws MessageSearchValidationException
98 98
      */
99 99
     protected function parse_date($date) {
100
-        if($date instanceof \Carbon\Carbon) return $date;
100
+        if($date instanceof \Carbon\Carbon) {
101
+            return $date;
102
+        }
101 103
 
102 104
         try {
103 105
             $date = Carbon::parse($date);
@@ -169,7 +171,7 @@  discard block
 block discarded – undo
169 171
             } else {
170 172
                 if($statement[1] === null){
171 173
                     $query .= $statement[0];
172
-                }else{
174
+                } else{
173 175
                     $query .= $statement[0].' "'.$statement[1].'"';
174 176
                 }
175 177
             }
@@ -198,7 +200,9 @@  discard block
 block discarded – undo
198 200
      * @return $this
199 201
      */
200 202
     public function limit($limit, $page = 1) {
201
-        if($page >= 1) $this->page = $page;
203
+        if($page >= 1) {
204
+            $this->page = $page;
205
+        }
202 206
         $this->limit = $limit;
203 207
 
204 208
         return $this;
Please login to merge, or discard this patch.