| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class ImageAlbum extends AlbumTyped |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @return Collection |
||
| 16 | */ |
||
| 17 | public function getImageFiles(): Collection |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return string |
||
| 24 | */ |
||
| 25 | public static function getAlbumType(): string |
||
| 26 | { |
||
| 27 | return static::ALBUM_TYPE_IMAGE; |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return array |
||
| 32 | */ |
||
| 33 | public static function getBehaviorAttributes(): array |
||
| 36 | } |
||
| 37 | } |
||
| 38 |