Files
animethemes-server/app/Search/Criteria.php
T

19 lines
266 B
PHP

<?php
declare(strict_types=1);
namespace App\Search;
readonly class Criteria
{
public function __construct(protected string $term) {}
/**
* Get the search term.
*/
public function getTerm(): string
{
return $this->term;
}
}