blob: c0761a251ec63a1a010e1e80d4e1ab46dabafe5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<?php
declare(strict_types=1);
namespace Nsfisis\Albatross\Sql\Internal;
use Nsfisis\Albatross\Sql\QueryBuilder;
final class Delete
{
private string $where = '';
/**
* @internal
*/
public function __construct(
private readonly QueryBuilder $sql,
private readonly string $table,
) {
}
public function where(string $where): self
{
$this->where = $where;
return $this;
}
/**
* @param array<string, string|int> $params
*/
public function execute(array $params = []): void
{
$this->sql->_executeDelete($this, $params);
}
/**
* @internal
*/
public function _getTable(): string
{
return $this->table;
}
/**
* @internal
*/
public function _getWhere(): string
{
return $this->where;
}
}
|