server/src/app/Models/GeonamesHierarchy.php
author Chloe Laisne <chloe.laisne@gmail.com>
Thu, 20 Oct 2016 12:56:24 +0530
changeset 374 c622fa18eb32
parent 308 e032d686d88e
permissions -rw-r--r--
Merge

<?php

namespace CorpusParole\Models;

use Illuminate\Database\Eloquent\Model;

class GeonamesHierarchy extends Model
{
    /**
     * The attributes that should be casted to native types.
     *
     * @var array
     */
    protected $casts = [
        'hierarchy' => 'array',
    ];
}