mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-02-11 07:38:57 +00:00
11 lines
172 B
PHP
11 lines
172 B
PHP
<?php
|
|
|
|
namespace BookStack\Search\Options;
|
|
|
|
class TermSearchOption extends SearchOption
|
|
{
|
|
public function toString(): string
|
|
{
|
|
return $this->value;
|
|
}
|
|
}
|