Fixed indentation

This commit is contained in:
Ben Roberts 2015-05-12 14:30:03 +02:00
parent ec9c2ff671
commit 1c526b989b

View File

@ -446,21 +446,21 @@ class Server
return (boolean) $this->getMailBoxDetails($mailbox); return (boolean) $this->getMailBoxDetails($mailbox);
} }
/** /**
* Return information about the mailbox or mailboxes * Return information about the mailbox or mailboxes
* *
* @param $mailbox * @param $mailbox
* *
* @return bool * @return bool
*/ */
public function getMailBoxDetails($mailbox) public function getMailBoxDetails($mailbox)
{ {
return imap_getmailboxes( return imap_getmailboxes(
$this->getImapStream(), $this->getImapStream(),
$this->getServerString(), $this->getServerString(),
$this->getServerSpecification() . $mailbox $this->getServerSpecification() . $mailbox
); );
} }
/** /**
* Creates the given mailbox. * Creates the given mailbox.