3 namespace BookStack\Search\Options;
5 class ExactSearchOption extends SearchOption
7 public function toString(): string
9 $escaped = str_replace('\\', '\\\\', $this->value);
10 $escaped = str_replace('"', '\"', $escaped);
11 return ($this->negated ? '-' : '') . '"' . $escaped . '"';