15 lines
355 B
PHP
15 lines
355 B
PHP
<?php
|
|
|
|
namespace App\Search\Action\Command;
|
|
|
|
use OneToMany\RichBundle\Contract\CommandInterface;
|
|
|
|
/** @implements CommandInterface<GetMediaInfoCommand> */
|
|
class GetMediaInfoCommand implements CommandInterface
|
|
{
|
|
public function __construct(
|
|
public string $imdbId,
|
|
public string $mediaType,
|
|
public ?int $season = null,
|
|
) {}
|
|
} |