| 1 | <?php |
||
| 11 | class TruncateQuery implements QueryInterface |
||
| 12 | { |
||
| 13 | /** @var string */ |
||
| 14 | protected $table; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param string $table |
||
| 18 | */ |
||
| 19 | 1 | public function __construct($table) |
|
| 23 | |||
| 24 | /** |
||
| 25 | * {@inheritdoc} |
||
| 26 | */ |
||
| 27 | 1 | public function toSql() |
|
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | public function getBindings() |
||
| 39 | } |
||
| 40 |