Browse Source

quick argument name change

pull/3/head
Cerys 4 months ago
parent
commit
09f7b97d72
  1. 4
      src/QueryBuilder/QueryBuilders/SelectQuery.php

4
src/QueryBuilder/QueryBuilders/SelectQuery.php

@ -53,9 +53,9 @@ final class SelectQuery
$this->Where = "" . $target . " " . $operator->value . " " . $value; $this->Where = "" . $target . " " . $operator->value . " " . $value;
return $this; return $this;
} }
public function InstanceOf(string $target): SelectQuery public function InstanceOf(string $schema): SelectQuery
{ {
$this->InstanceOf = "" . $target; $this->InstanceOf = "" . $schema;
return $this; return $this;
} }
} }
Loading…
Cancel
Save