]> git.mxchange.org Git - friendica.git/commitdiff
Add missing methods to Storage\SystemResource
authorHypolite Petovan <hypolite@mrpetovan.com>
Fri, 14 Dec 2018 04:47:22 +0000 (23:47 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Mon, 21 Jan 2019 14:12:31 +0000 (09:12 -0500)
Part of #6263

src/Model/Storage/SystemResource.php

index 354b1e3284f6c3db97afcc8eb7af5fe9a42c5e6f..718a2e90affc8ffc756d38e2a5a862dc2ed65810 100644 (file)
@@ -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 [];
+       }
 }