server/src/app/Http/Controllers/Controller.php
author ymh <ymh.work@gmail.com>
Tue, 19 Jan 2016 19:16:23 +0100
changeset 108 be2d3b30b2e0
parent 27 a2342f26c9de
permissions -rw-r--r--
change isPartOf to edm:isGatheredInto for collections

<?php

namespace CorpusParole\Http\Controllers;

use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Routing\Controller as BaseController;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;

abstract class Controller extends BaseController
{
    use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
}