1 | <?php |
||
8 | final class Update extends Query |
||
9 | { |
||
10 | use Traits\HasRelatedWith; |
||
11 | |||
12 | protected const ALLOWED_METHODS = [ |
||
13 | 'set', |
||
14 | 'setFlag', |
||
15 | 'where', |
||
16 | 'orWhere', |
||
17 | 'catWhere', |
||
18 | 'orderBy', |
||
19 | 'limit', |
||
20 | 'offset', |
||
21 | ]; |
||
22 | |||
23 | public function __construct(Table $table, array $data = []) |
||
35 | } |
||
36 |