From 5f829986ddc79f0a4a41a3cb77ed5c2d74ba8b50 Mon Sep 17 00:00:00 2001 From: Awilum Date: Tue, 3 Aug 2021 18:54:53 +0300 Subject: [PATCH] feat(storage): add method `getOptions` --- src/flextype/Storage.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/flextype/Storage.php b/src/flextype/Storage.php index 247775c8..3624a153 100755 --- a/src/flextype/Storage.php +++ b/src/flextype/Storage.php @@ -486,4 +486,12 @@ class Storage return strings('storageEntry' . $storageEntryFile)->hash()->toString(); } + + /** + * Get Storage options + */ + public function getOptions(): array + { + return $this->options; + } }