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/SearchServices/Tokens/SearchToken.php
2014-10-18 18:48:29 +02:00

28 lines
376 B
PHP

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