1 Commits
0.0.2 ... 0.0.3

Author SHA1 Message Date
Aerex
56eb7e7571 fix: Used correct declaration for setRawConfigs
- chore: Added README
2020-05-04 23:39:00 -05:00
2 changed files with 13 additions and 1 deletions

12
README.md Normal file
View File

@@ -0,0 +1,12 @@
# baikal-storage-plugin
## Install
```
composer require aerex/baikal-storage-plugin
```
## Usage
- Add the plugin to `Core/Frameworks/Baikal/Core/Server.php`
```
$this->server->addPlugin(new \Aerex\BaikalStorage\Plugin())
```

View File

@@ -8,5 +8,5 @@ interface IStorage {
public function save(Calendar $c); public function save(Calendar $c);
public function refresh(); public function refresh();
public function getConfig(); public function getConfig();
public function setRawConfigs(); public function setRawConfigs($rawConfigs);
} }