| 1 |
<?php |
| 2 |
|
| 3 |
namespace Booktics\Calendar; |
| 4 |
|
| 5 |
interface Calendar_Interface { |
| 6 |
public static function get_id(): string; |
| 7 |
public function sync_events( int $team_member_id ); |
| 8 |
public function create_event( array $event_data ); |
| 9 |
public function update_event( string $event_id, array $event_data ); |
| 10 |
public function delete_event( string $event_id ); |
| 11 |
public function is_configured( int $team_member_id ): bool; |
| 12 |
} |
| 13 |
|