This commit is contained in:
2023-04-07 18:23:27 +08:00
parent 6d122c4ae1
commit 5d41c7219f
9 changed files with 339 additions and 328 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ class DefaultCondition extends Condition
*/
#[Pure] public function builder(): string
{
return sprintf('%s %s %s', $this->column, $this->opera, addslashes($this->value));
return $this->column . ' ' . $this->opera . ' ' . addslashes($this->value);
}
}