mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 11:45:00 +02:00
19 lines
266 B
PHP
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;
|
|
}
|
|
}
|