14 lines
271 B
PHP
14 lines
271 B
PHP
<?php
|
|
|
|
namespace App\Search\Action\Command;
|
|
|
|
use OneToMany\RichBundle\Contract\CommandInterface;
|
|
|
|
/** @implements CommandInterface<SearchCommand> */
|
|
class SearchCommand implements CommandInterface
|
|
{
|
|
public function __construct(
|
|
public string $term
|
|
) {}
|
|
}
|