From: Hypolite Petovan Date: Fri, 14 Dec 2018 04:47:22 +0000 (-0500) Subject: Add missing methods to Storage\SystemResource X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=578a39139388c44d3842773fc8ce4a27e6d1acaf;p=friendica.git Add missing methods to Storage\SystemResource Part of #6263 --- diff --git a/src/Model/Storage/SystemResource.php b/src/Model/Storage/SystemResource.php index 354b1e3284..718a2e90af 100644 --- a/src/Model/Storage/SystemResource.php +++ b/src/Model/Storage/SystemResource.php @@ -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 []; + } }