changeset 308 | e032d686d88e |
307:07b44a378ad8 | 308:e032d686d88e |
---|---|
1 <?php |
|
2 |
|
3 namespace CorpusParole\Models; |
|
4 |
|
5 use Illuminate\Database\Eloquent\Model; |
|
6 |
|
7 class GeonamesHierarchy extends Model |
|
8 { |
|
9 /** |
|
10 * The attributes that should be casted to native types. |
|
11 * |
|
12 * @var array |
|
13 */ |
|
14 protected $casts = [ |
|
15 'hierarchy' => 'array', |
|
16 ]; |
|
17 } |