2020-05-03 16:41:59 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Aerex\BaikalStorage\Storages;
|
|
|
|
|
|
|
|
use Sabre\VObject\Component\VCalendar as Calendar;
|
|
|
|
|
|
|
|
interface IStorage {
|
2020-09-18 22:15:12 -05:00
|
|
|
public function save(Calendar $c, string $displayname);
|
2020-06-27 00:56:44 -05:00
|
|
|
public function remove($uid);
|
2020-05-03 16:41:59 -05:00
|
|
|
public function refresh();
|
2020-06-14 23:55:05 -05:00
|
|
|
public function getConfigBrowser();
|
|
|
|
public function updateConfigs($postData);
|
2020-05-03 16:41:59 -05:00
|
|
|
}
|
2020-09-18 22:15:12 -05:00
|
|
|
|