server/src/app/Models/GeonamesHierarchy.php
author ymh <ymh.work@gmail.com>
Tue, 15 Nov 2016 18:25:35 +0100
changeset 425 f99435a7006e
parent 308 e032d686d88e
permissions -rw-r--r--
correct type in dateminmax controller

<?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',
    ];
}