Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | 4 | public function getTable(): string |
|
18 | { |
||
19 | 4 | if ($this->table) { |
|
20 | 4 | return $this->table; |
|
21 | } |
||
22 | 2 | $tableName = $this->getTableNameRoot(); |
|
23 | 2 | if ($suffix = config('geonames.database.default_suffix')) { |
|
24 | 2 | $tableName = "{$tableName}_{$suffix}"; |
|
25 | } |
||
26 | |||
27 | 2 | return $tableName; |
|
28 | } |
||
47 |