Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
46 | 2 | public function getTableMetadata(string $tableName): TableMetadata |
|
47 | { |
||
48 | 2 | if (!array_key_exists($tableName, $this->tableMetadataList)) { |
|
49 | 1 | throw new \RuntimeException('Database "' . $this->databaseName . '" doesn\'t contain table "' . $tableName . '"'); |
|
50 | } |
||
51 | |||
52 | 1 | return $this->tableMetadataList[$tableName]; |
|
53 | } |
||
54 | |||
64 | } |