| Total Complexity | 4 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class MySQLTemporaryTable implements RunnableTemporaryTable { |
||
| 9 | public function __construct( |
||
| 10 | private Database $db, |
||
| 11 | private string $name |
||
| 12 | ) {} |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @return string |
||
| 16 | */ |
||
| 17 | public function getName(): string { |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return $this |
||
| 23 | */ |
||
| 24 | public function release() { |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | public function __toString(): string { |
||
| 37 |