ameliabooking
/
vendor
/
melograno
/
usage-tracker
/
src
/
Collectors
/
PluginCollectorInterface.php
Common
2 months ago
Plugin
2 months ago
BaseCollector.php
2 months ago
ConsentNoticeCollectorInterface.php
2 months ago
PluginCollectorInterface.php
2 months ago
PluginCollectorInterface.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace AmeliaVendor\Melograno\UsageTracker\Collectors; |
| 6 | |
| 7 | interface PluginCollectorInterface |
| 8 | { |
| 9 | public function getPluginSlug(): string; |
| 10 | |
| 11 | public function getConsentOptionName(): string; |
| 12 | |
| 13 | public function getCronHookName(): string; |
| 14 | |
| 15 | public function getCronSchedule(): string; |
| 16 | |
| 17 | /** |
| 18 | * @return array<string, mixed> |
| 19 | */ |
| 20 | public function collect(): array; |
| 21 | } |
| 22 |