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

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;
}
}