server/src/app/Http/Controllers/Controller.php
author ymh <ymh.work@gmail.com>
Thu, 14 Jan 2016 18:35:23 +0100
changeset 25 4ce76c9e7729
parent 2 00e2916104fe
child 27 a2342f26c9de
permissions -rw-r--r--
small corrections

<?php

namespace CorpusParole\Http\Controllers;

use Illuminate\Foundation\Bus\DispatchesCommands;
use Illuminate\Routing\Controller as BaseController;
use Illuminate\Foundation\Validation\ValidatesRequests;

abstract class Controller extends BaseController
{
    use DispatchesCommands, ValidatesRequests;
}