mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-31 03:52:01 +08:00
Added comment to public function GenerateFilePath()
This commit is contained in:
parent
44c4514622
commit
335b6bc5c8
2 changed files with 6 additions and 0 deletions
|
@ -66,6 +66,9 @@ class Storage extends \RainLoop\Providers\AbstractProvider
|
|||
return $this->oDriver->DeleteStorage($mAccount);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param \RainLoop\Model\Account|string|null $mAccount
|
||||
*/
|
||||
public function GenerateFilePath($mAccount, int $iStorageType, bool $bMkDir = false) : string
|
||||
{
|
||||
return $this->oDriver->GenerateFilePath($mAccount, $iStorageType, $bMkDir);
|
||||
|
|
|
@ -85,6 +85,9 @@ class FileStorage implements \RainLoop\Providers\Storage\IStorage
|
|||
return $this->bLocal;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param \RainLoop\Model\Account|string|null $mAccount
|
||||
*/
|
||||
public function GenerateFilePath($mAccount, int $iStorageType, bool $bMkDir = false) : string
|
||||
{
|
||||
$sEmail = $sSubFolder = '';
|
||||
|
|
Loading…
Reference in a new issue