Conditions | 3 |
Paths | 4 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
35 | public function __construct(string $name, string $table, string $field, string $delete = null, string $update = null) { |
||
36 | |||
37 | $this->name = $name; $this->table = $table; $this->field = $field; |
||
38 | |||
39 | if (null !== $delete) $this->delete = $this->validateAction($delete); |
||
40 | |||
41 | if (null !== $update) $this->update = $this->validateAction($update); |
||
42 | } |
||
43 | |||
58 |