4 Commits

Author SHA1 Message Date
a22a927bb4 FIX: make instead of get 2022-09-09 14:09:13 -04:00
2fd0af5c2f FIX 2022-09-09 12:19:03 -04:00
0f4438bd5f FIX dependency and add Readme 2022-09-08 22:14:18 -04:00
9eef089b85 First working copy 2022-09-08 17:43:20 -04:00

View File

@ -65,7 +65,7 @@ abstract class Insert extends Query implements InsertInterface
} }
public function addValue(int|string $value): InsertInterface public function addValue(int|string $value): InsertInterface
{ {
if (!is_numeric($value) and $value !== '?') { if (!is_numeric($value)) {
$value = "'{$value}'"; $value = "'{$value}'";
} }
$this->values []= $value; $this->values []= $value;