mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-14 23:23:37 +08:00
12 lines
172 B
PHP
12 lines
172 B
PHP
|
<?php
|
||
|
|
||
|
namespace BookStack\Search\Options;
|
||
|
|
||
|
class TermSearchOption extends SearchOption
|
||
|
{
|
||
|
public function toString(): string
|
||
|
{
|
||
|
return $this->value;
|
||
|
}
|
||
|
}
|