28 lines
369 B
PHP
28 lines
369 B
PHP
<?php
|
|
namespace Szurubooru\SearchServices;
|
|
|
|
class SearchToken
|
|
{
|
|
private $negated = false;
|
|
private $value;
|
|
|
|
public function isNegated()
|
|
{
|
|
return $this->negated;
|
|
}
|
|
|
|
public function setNegated($negated)
|
|
{
|
|
$this->negated = $negated;
|
|
}
|
|
|
|
public function getValue()
|
|
{
|
|
return $this->value;
|
|
}
|
|
|
|
public function setValue($value)
|
|
{
|
|
$this->value = $value;
|
|
}
|
|
}
|