server/src/app/Models/CocoonRevision.php
author nowmad@nowmads-macbook-pro.local
Tue, 15 Dec 2015 17:22:14 +0100
changeset 55 484c02a0e590
parent 18 f2a40bbc27f6
permissions -rw-r--r--
reorganize html of application

<?php

namespace CorpusParole\Models;

use Illuminate\Database\Eloquent\Model;

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