Bugfix: @param/@return documentation was incorrect which caused errors

This commit is contained in:
djmaze 2020-03-16 15:48:58 +01:00
parent 7eb1defa16
commit b81b36d120
10 changed files with 33 additions and 32 deletions

View file

@ -703,7 +703,7 @@ class MailClient
* @throws \MailSo\Net\Exceptions\Exception
* @throws \MailSo\Imap\Exceptions\Exception
*/
public function FolderInformation(string $sFolderName, string $sPrevUidNext = '', array $aUids = array()) : string
public function FolderInformation(string $sFolderName, string $sPrevUidNext = '', array $aUids = array()) : array
{
$aFlags = array();
@ -1879,7 +1879,7 @@ class MailClient
return $oMessageCollection;
}
public function Quota() : array
public function Quota() : ?array
{
return $this->oImapClient->Quota();
}