server/src/app/Models/GeonamesHierarchy.php
author ymh <ymh.work@gmail.com>
Wed, 22 Feb 2017 14:44:28 +0100
changeset 520 d6adc4047ede
parent 308 e032d686d88e
permissions -rw-r--r--
Add creator in participants, resolve #0026453

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