This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/src/Search/Tokens/SearchToken.php
2015-06-28 10:07:56 +02:00

28 lines
434 B
PHP

<?php
namespace Szurubooru\Search\Tokens;
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;
}
}