Files
torsearch/src/Search/Action/Command/GetMediaInfoCommand.php

14 lines
319 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,
) {}
}