Namespace and ClassPath rewrites
This commit is contained in:
15
Core/Driver/SQL/Query/RollBack.class.php
Normal file
15
Core/Driver/SQL/Query/RollBack.class.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace Core\Driver\SQL\Query;
|
||||
|
||||
use Core\Driver\SQL\SQL;
|
||||
|
||||
class RollBack extends Query {
|
||||
public function __construct(SQL $sql) {
|
||||
parent::__construct($sql);
|
||||
}
|
||||
|
||||
public function build(array &$params): ?string {
|
||||
return "ROLLBACK";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user