Add missing methods to Storage\SystemResource

Part of #6263
2022.09-rc
Hypolite Petovan 2018-12-13 23:47:22 -05:00
rodzic bbbc15a5eb
commit 578a391393
1 zmienionych plików z 10 dodań i 1 usunięć

Wyświetl plik

@ -10,7 +10,7 @@ namespace Friendica\Model\Storage;
* @brief System resource storage class
*
* This class is used to load system resources, like images.
* Is not itended to be selectable by admins as default storage class.
* Is not intended to be selectable by admins as default storage class.
*/
class SystemResource implements IStorage
{
@ -40,5 +40,14 @@ class SystemResource implements IStorage
throw new \BadMethodCallException();
}
public static function getOptions()
{
return [];
}
public static function saveOptions($data)
{
return [];
}
}