12 lines
205 B
PHP
12 lines
205 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pcm\SearchBundle\Entity\Interface;
|
|
|
|
interface SearchableInterface
|
|
{
|
|
public function getSearchTitle(): string;
|
|
public function getSearchValues(): array;
|
|
}
|