Total Complexity | 3 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
7 | trait SetTrait |
||
8 | { |
||
9 | /** |
||
10 | * @var array |
||
11 | */ |
||
12 | protected $set = []; |
||
13 | |||
14 | /** |
||
15 | * @param string $column |
||
16 | * @param null|int|string $value |
||
17 | * |
||
18 | * @return $this |
||
19 | */ |
||
20 | public function set(string $column, $value) |
||
41 | } |
||
42 | |||
43 | /** |
||
44 | * @return null|string |
||
45 | */ |
||
46 | protected function buildSetQueryPart(): ?string |
||
54 |