server/src/app/Models/GeonamesHierarchy.php
author ymh <ymh.work@gmail.com>
Mon, 14 Nov 2016 16:27:37 +0100
changeset 418 6eb84397be15
parent 308 e032d686d88e
permissions -rw-r--r--
Correct error message 'split is deprecated' in php

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