summaryrefslogtreecommitdiffstats
path: root/apps/theming/lib/ImageManager.php
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-03-28 12:24:32 +0200
committerJulius Härtl <jus@bitgrid.net>2018-04-19 20:14:40 +0200
commit39f44e1452c67b1b3da5a85c89d3fc3856d19ab8 (patch)
treeaaf078510f3bf112debbc813be4ac00f258be7e1 /apps/theming/lib/ImageManager.php
parentdaadc1c892e3febceb370ea0f62722b777572d65 (diff)
downloadnextcloud-server-39f44e1452c67b1b3da5a85c89d3fc3856d19ab8.tar.gz
nextcloud-server-39f44e1452c67b1b3da5a85c89d3fc3856d19ab8.zip
Add typehints
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/lib/ImageManager.php')
-rw-r--r--apps/theming/lib/ImageManager.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/theming/lib/ImageManager.php b/apps/theming/lib/ImageManager.php
index 06cc37a3d1b..d268552bf94 100644
--- a/apps/theming/lib/ImageManager.php
+++ b/apps/theming/lib/ImageManager.php
@@ -25,6 +25,7 @@
namespace OCA\Theming;
use OCP\Files\SimpleFS\ISimpleFile;
+use OCP\Files\SimpleFS\ISimpleFolder;
use OCP\IConfig;
use OCP\Files\IAppData;
use OCP\Files\NotFoundException;
@@ -132,7 +133,7 @@ class ImageManager {
* @return \OCP\Files\SimpleFS\ISimpleFile
* @throws NotPermittedException
*/
- public function getCachedImage($filename): ISimpleFile {
+ public function getCachedImage(string $filename): ISimpleFile {
$currentFolder = $this->getCacheFolder();
return $currentFolder->getFile($filename);
}
@@ -146,7 +147,7 @@ class ImageManager {
* @throws NotFoundException
* @throws NotPermittedException
*/
- public function setCachedImage($filename, $data): ISimpleFile {
+ public function setCachedImage(string $filename, string $data): ISimpleFile {
$currentFolder = $this->getCacheFolder();
if ($currentFolder->fileExists($filename)) {
$file = $currentFolder->getFile($filename);