19 lines
371 B
PHP
19 lines
371 B
PHP
<?php
|
|
|
|
namespace App\Twig\Components;
|
|
|
|
use Aimeos\Map;
|
|
use Symfony\UX\TwigComponent\Attribute\AsTwigComponent;
|
|
|
|
#[AsTwigComponent]
|
|
final class PosterContainer
|
|
{
|
|
public array|Map $media;
|
|
public string $mediaType;
|
|
public ?string $genreId = null;
|
|
public ?string $genre = null;
|
|
|
|
// Only show 6 results and a 'more' button
|
|
public bool $tease = true;
|
|
}
|