21 lines
		
	
	
		
			441 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			441 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Core\Driver\SQL\Query;
 | |
| 
 | |
| use Core\Driver\SQL\SQL;
 | |
| 
 | |
| class Truncate extends Query {
 | |
| 
 | |
|   private string $tableName;
 | |
| 
 | |
|   public function __construct(SQL $sql, string $name) {
 | |
|     parent::__construct($sql);
 | |
|     $this->tableName = $name;
 | |
|   }
 | |
| 
 | |
|   public function getTable(): string { return $this->tableName; }
 | |
| 
 | |
|   public function build(array &$params): ?string {
 | |
|     return "TRUNCATE " . $this->sql->tableName($this->getTable());
 | |
|   }
 | |
| } |