| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class Geoname extends Model |
||
| 8 | { |
||
| 9 | use HasTableWithSuffix, HasCoordinates, HasLocationName; |
||
|
|
|||
| 10 | |||
| 11 | protected $primaryKey = 'geoname_id'; |
||
| 12 | public $incrementing = false; |
||
| 13 | |||
| 14 | protected $guarded = []; |
||
| 15 | |||
| 16 | protected string $locationNameColumn = 'ascii_name'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @inheritDoc |
||
| 20 | */ |
||
| 21 | 2 | public function getTableNameRoot(): string |
|
| 26 |