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

29 lines
369 B
PHP
Raw Normal View History

2014-09-23 20:45:59 +02:00
<?php
namespace Szurubooru\SearchServices;
class SearchToken
{
2014-09-24 20:13:16 +02:00
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;
}
2014-09-23 20:45:59 +02:00
}