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