Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
19 | public function create(string $name, $callback) |
||
20 | { |
||
21 | call_user_func_array($callback, [$this->table]); |
||
22 | |||
23 | $q = "CREATE TABLE $name ({$this->getColumns()}"; |
||
24 | $q .= $this->pk().$this->fk().$this->onUpdate().$this->onDelete(); |
||
25 | $q .= "\n) ENGINE=INNODB;"; |
||
26 | |||
27 | $this->sql = $q; |
||
28 | } |
||
85 |