From 92105be73d0db3af513093bcd3398f89daed976b Mon Sep 17 00:00:00 2001
From: Lewis Cowles <lewiscowles@me.com>
Date: Sun, 24 May 2015 13:02:47 +0100
Subject: [PATCH] PSR Madness

at least google led me to this for the cryptic messages... http://cs.sensiolabs.org/
---
 src/Fetch/Server.php | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/Fetch/Server.php b/src/Fetch/Server.php
index 06a2369..a91f4fa 100644
--- a/src/Fetch/Server.php
+++ b/src/Fetch/Server.php
@@ -318,8 +318,8 @@ class Server
     /**
      * This returns the number of messages that the current mailbox contains.
      *
-     * @param   string  $mailbox    the mailbox path if required to get sub-folder counts
-     * @return  int
+     * @param  string   $mailbox    the mailbox path if required to get sub-folder counts
+     * @return int
      */
     public function numMessages($mailbox='')
     {
@@ -332,7 +332,8 @@ class Server
             $cnt = $this->numMessages();
             $this->setMailbox($oldMailbox);
         }
-        return ((int)$cnt);
+        
+        return ((int) $cnt);
     }
 
     /**