Starting actors populate

This commit is contained in:
thibaud-leclere
2026-01-15 14:01:45 +01:00
parent be171b45b4
commit dcc47fcb65
5 changed files with 95 additions and 24 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Context\TMDB;
use App\Model\TMDB\TMDBActor;
class MovieCreditsContext
{
public function __construct(
/** @var TMDBActor[] */
public array $cast { get => $this->cast; },
) {}
}