| 1 | <?php |
||
| 5 | final class EventStreamFeedLink extends AbstractFeedLink |
||
| 6 | { |
||
| 7 | const LINK_SELF = 'self'; |
||
| 8 | const LINK_FIRST = 'first'; |
||
| 9 | const LINK_LAST = 'last'; |
||
| 10 | const LINK_PREVIOUS = 'previous'; |
||
| 11 | const LINK_NEXT = 'next'; |
||
| 12 | const LINK_METADATA = 'metadata'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @return array |
||
| 16 | */ |
||
| 17 | protected function getValidRelations(): array |
||
| 28 | } |
||
| 29 |