server/src/app/Models/GeonamesHierarchy.php
author Chloe Laisne <chloe.laisne@gmail.com>
Sun, 02 Oct 2016 21:43:05 +0200
changeset 317 e653de66f252
parent 308 e032d686d88e
permissions -rw-r--r--
Remove document filtering in playlist

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