Skip to content

Commit

Permalink
Fixed indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
benr77 committed May 12, 2015
1 parent ec9c2ff commit 1c526b9
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/Fetch/Server.php
Expand Up @@ -446,21 +446,21 @@ public function hasMailBox($mailbox)
return (boolean) $this->getMailBoxDetails($mailbox);
}

/**
* Return information about the mailbox or mailboxes
*
* @param $mailbox
*
* @return bool
*/
public function getMailBoxDetails($mailbox)
{
/**
* Return information about the mailbox or mailboxes
*
* @param $mailbox
*
* @return bool
*/
public function getMailBoxDetails($mailbox)
{
return imap_getmailboxes(
$this->getImapStream(),
$this->getServerString(),
$this->getServerSpecification() . $mailbox
);
}
}

/**
* Creates the given mailbox.
Expand Down

0 comments on commit 1c526b9

Please sign in to comment.