server/src/app/Models/CocoonRevision.php
author ymh <ymh.work@gmail.com>
Thu, 02 Mar 2017 15:09:17 +0100
changeset 526 cdaf9dfb5dfd
parent 18 f2a40bbc27f6
permissions -rw-r--r--
correct licence problem in bug #0026523

<?php

namespace CorpusParole\Models;

use Illuminate\Database\Eloquent\Model;

class CocoonRevision extends Model
{
    public function document() {
        return $this->belongsTo('CorpusParole\Models\CocoonDocument');
    }
}