mirror of
https://github.com/BookStackApp/BookStack.git
synced 2026-03-01 11:19:40 +03:00
14 lines
324 B
PHP
14 lines
324 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace BookStack\Search\Options;
|
||
|
|
|
||
|
|
class ExactSearchOption extends SearchOption
|
||
|
|
{
|
||
|
|
public function toString(): string
|
||
|
|
{
|
||
|
|
$escaped = str_replace('\\', '\\\\', $this->value);
|
||
|
|
$escaped = str_replace('"', '\"', $escaped);
|
||
|
|
return ($this->negated ? '-' : '') . '"' . $escaped . '"';
|
||
|
|
}
|
||
|
|
}
|