1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00

Restore coverage for Query class

This commit is contained in:
J. King 2022-04-29 17:23:41 -04:00
parent a44fe103d8
commit c6cc2a1a42
2 changed files with 7 additions and 4 deletions

View file

@ -16,7 +16,7 @@ class QueryFilter {
public $filterRestrictive = true;
public function setWhere(string $where, $types = null, $values = null): self {
public function setWhere(string $where, $types = null, $values = null): static {
$this->qWhere[] = $where;
if (!is_null($types)) {
$this->tWhere[] = $types ?? [];
@ -25,7 +25,7 @@ class QueryFilter {
return $this;
}
public function setWhereNot(string $where, $types = null, $values = null): self {
public function setWhereNot(string $where, $types = null, $values = null): static {
$this->qWhereNot[] = $where;
if (!is_null($types)) {
$this->tWhereNot[] = $types;
@ -34,7 +34,7 @@ class QueryFilter {
return $this;
}
public function setFilter(self $filter): self {
public function setFilter(self $filter): static {
$this->qWhere[] = "(".$filter->buildWhereBody().")";
$this->tWhere[] = $filter->getWhereTypes();
$this->vWhere[] = $filter->getWhereValues();

View file

@ -8,7 +8,10 @@ namespace JKingWeb\Arsse\TestCase\Misc;
use JKingWeb\Arsse\Misc\Query;
/** @covers \JKingWeb\Arsse\Misc\Query */
/**
* @covers \JKingWeb\Arsse\Misc\Query
* @covers \JKingWeb\Arsse\Misc\QueryFilter
*/
class TestQuery extends \JKingWeb\Arsse\Test\AbstractTest {
public function testBasicQuery(): void {
$q = new Query("select * from table where a = ?", "int", 3);