| Conditions | 3 |
| Paths | 4 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | public function __construct(string $name, string $table, string $field, string $delete = null, string $update = null) { |
||
| 23 | |||
| 24 | $this->name = $name; $this->table = $table; $this->field = $field; |
||
| 25 | |||
| 26 | if (null !== $delete) $this->delete = $this->getAction($delete); |
||
| 27 | |||
| 28 | if (null !== $update) $this->update = $this->getAction($delete); |
||
| 29 | } |
||
| 30 | |||
| 43 |