| 1 | <?php declare(strict_types=1); |
||
| 8 | abstract class EmptyEvent implements EventInterface, EmptyResourceInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @return int |
||
| 12 | */ |
||
| 13 | public function id(): int |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return string |
||
| 20 | */ |
||
| 21 | public function type(): string |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return User |
||
| 28 | */ |
||
| 29 | public function actor(): User |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return RepositorySimple |
||
| 36 | */ |
||
| 37 | public function repo(): RepositorySimple |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return array |
||
| 44 | */ |
||
| 45 | public function payload(): array |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @return bool |
||
| 52 | */ |
||
| 53 | public function public(): bool |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @return DateTimeInterface |
||
| 60 | */ |
||
| 61 | public function createdAt(): DateTimeInterface |
||
| 65 | } |
||
| 66 |