mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03: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);
|
return $this->oDriver->DeleteStorage($mAccount);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param \RainLoop\Model\Account|string|null $mAccount
|
||||||
|
*/
|
||||||
public function GenerateFilePath($mAccount, int $iStorageType, bool $bMkDir = false) : string
|
public function GenerateFilePath($mAccount, int $iStorageType, bool $bMkDir = false) : string
|
||||||
{
|
{
|
||||||
return $this->oDriver->GenerateFilePath($mAccount, $iStorageType, $bMkDir);
|
return $this->oDriver->GenerateFilePath($mAccount, $iStorageType, $bMkDir);
|
||||||
|
|
|
||||||
|
|
@ -85,6 +85,9 @@ class FileStorage implements \RainLoop\Providers\Storage\IStorage
|
||||||
return $this->bLocal;
|
return $this->bLocal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param \RainLoop\Model\Account|string|null $mAccount
|
||||||
|
*/
|
||||||
public function GenerateFilePath($mAccount, int $iStorageType, bool $bMkDir = false) : string
|
public function GenerateFilePath($mAccount, int $iStorageType, bool $bMkDir = false) : string
|
||||||
{
|
{
|
||||||
$sEmail = $sSubFolder = '';
|
$sEmail = $sSubFolder = '';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue