Conditions | 3 |
Paths | 4 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
48 | public function getStatement() : string { |
||
49 | |||
50 | return ("FOREIGN KEY (`" . $this->name . "`) REFERENCES `" . $this->table . "` (`" . $this->field . "`)") . |
||
51 | |||
52 | ((null !== $this->delete) ? (" ON DELETE " . $this->delete) : "") . |
||
53 | |||
54 | ((null !== $this->update) ? (" ON UPDATE " . $this->update) : ""); |
||
55 | } |
||
56 | } |
||
58 |