1 | <?php |
||
16 | class DropQuery implements QueryInterface |
||
17 | { |
||
18 | use Attributes; |
||
19 | |||
20 | /** @var string */ |
||
21 | protected $table; |
||
22 | |||
23 | /** |
||
24 | * @param string $table |
||
25 | */ |
||
26 | 1 | public function __construct($table) |
|
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | 1 | public function toSql() |
|
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | public function getBindings() |
||
57 | } |
||
58 |