eee
This commit is contained in:
+6
-1
@@ -152,7 +152,12 @@ class SqlBuilder extends Component
|
||||
*/
|
||||
public function delete(): string
|
||||
{
|
||||
return 'DELETE FROM ' . $this->getFromAlias() . $this->make();
|
||||
return join(' ', [
|
||||
'DELETE',
|
||||
'FROM',
|
||||
$this->getFromAlias(),
|
||||
$this->make(),
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user