Browse Source

stuff from the broken branch lol

pull/4/head
Cerys 4 months ago
parent
commit
26c7e8a0a6
  1. 2
      composer.json
  2. 4
      src/QueryBuilder/QueryBuilders/SelectQuery.php

2
composer.json

@ -6,7 +6,7 @@
"authors": [ "authors": [
{ {
"name": "Cerys Lewis", "name": "Cerys Lewis",
"email": "cerys@darksparrow.uk", "email": "cerys.lewis@darksparrow.uk",
"homepage": "https://ceryslewis.dev", "homepage": "https://ceryslewis.dev",
"role": "Lead Developer" "role": "Lead Developer"
} }

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