Total Complexity | 1 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
23 | class Locale extends Model |
||
24 | { |
||
25 | /** |
||
26 | * The "type" of the auto-incrementing ID. |
||
27 | * |
||
28 | * @var string |
||
29 | */ |
||
30 | protected $keyType = 'string'; |
||
31 | |||
32 | /** |
||
33 | * Indicates if the IDs are auto-incrementing. |
||
34 | * |
||
35 | * @var bool |
||
36 | */ |
||
37 | public $incrementing = false; |
||
38 | |||
39 | /** |
||
40 | * The attributes that aren't mass assignable. |
||
41 | * |
||
42 | * @since 1.0.0 |
||
43 | * @var array |
||
44 | */ |
||
45 | protected $guarded = []; |
||
46 | |||
47 | /** |
||
48 | * @since 1.0.0 |
||
49 | * @return Locale |
||
50 | */ |
||
51 | public static function current() |
||
56 |