From f8d2f81d817bbeb01026bb589f15336043e5597a Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Wed, 12 Dec 2018 20:52:09 +0100 Subject: [PATCH] Fix docs --- doc/AddonStorageBackend.md | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/doc/AddonStorageBackend.md b/doc/AddonStorageBackend.md index d6ad9d37db..d42c8bbbd7 100644 --- a/doc/AddonStorageBackend.md +++ b/doc/AddonStorageBackend.md @@ -14,14 +14,16 @@ The class must implement `Friendica\Model\Storage\IStorage` interface. All metho namespace Friendica\Model\Storage; - interface IStorage - { - public static function get($ref); - public static function put($data, $ref = ""); - public static function delete($ref); - public static function getOptions(); - public static function saveOptions($data); - } +```php +interface IStorage +{ + public static function get($ref); + public static function put($data, $ref = ""); + public static function delete($ref); + public static function getOptions(); + public static function saveOptions($data); +} +``` - `get($ref)` returns data pointed by `$ref` - `put($data, $ref)` saves data in `$data` to position `$ref`, or a new position if `$ref` is empty. @@ -196,7 +198,7 @@ function samplestorage_unistall() // when the plugin is uninstalled, we unregister the backend. StorageManager::unregister("Sample Storage"); } - +```