]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Storage/SystemResource.php
Replaced quotes
[friendica.git] / src / Model / Storage / SystemResource.php
index b54aabf6a4262f2eb5423c6d7bdf62b9a24283f7..3afe8ee6f5e7f88bc5cf6b2cdbffbfc6179e9513 100644 (file)
@@ -6,11 +6,13 @@
 
 namespace Friendica\Model\Storage;
 
+use \BadMethodCallException;
+
 /**
  * @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
 {
@@ -30,15 +32,24 @@ class SystemResource implements IStorage
        }
 
 
-       public static function put($data, $filename="")
+       public static function put($data, $filename = "")
        {
-               throw new \BadMethodCallException();
+               throw new BadMethodCallException();
        }
 
        public static function delete($filename)
        {
-               throw new \BadMethodCallException();
+               throw new BadMethodCallException();
+       }
+
+       public static function getOptions()
+       {
+               return [];
        }
 
+       public static function saveOptions($data)
+       {
+               return [];
+       }
 }