Skip to content

Commit fc0d9a9

Browse files
committed
Codestyle fixed
1 parent 6b05325 commit fc0d9a9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/IMAP/Query/Query.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ protected function parse_value($value){
9696
* @return Carbon
9797
* @throws MessageSearchValidationException
9898
*/
99-
protected function parse_date($date){
99+
protected function parse_date($date) {
100100
if($date instanceof \Carbon\Carbon) return $date;
101101

102102
try {
@@ -114,7 +114,7 @@ protected function parse_date($date){
114114
* @return MessageCollection
115115
* @throws GetMessagesFailedException
116116
*/
117-
public function get(){
117+
public function get() {
118118
$messages = MessageCollection::make([]);
119119

120120
try {
@@ -161,7 +161,7 @@ public function get(){
161161
*
162162
* @return string
163163
*/
164-
public function generate_query(){
164+
public function generate_query() {
165165
$query = '';
166166
$this->query->each(function($statement) use(&$query) {
167167
if (count($statement) == 1) {
@@ -185,7 +185,7 @@ public function generate_query(){
185185
/**
186186
* @return Client
187187
*/
188-
public function getClient(){
188+
public function getClient() {
189189
$this->oClient->checkConnection();
190190
return $this->oClient;
191191
}
@@ -197,7 +197,7 @@ public function getClient(){
197197
*
198198
* @return $this
199199
*/
200-
public function limit($limit, $page = 1){
200+
public function limit($limit, $page = 1) {
201201
if($page >= 1) $this->page = $page;
202202
$this->limit = $limit;
203203

0 commit comments

Comments
 (0)