authserver/testCAS/app/Http/Controllers/Controller.php
author durandn
Mon, 12 Oct 2015 11:46:23 +0200
changeset 174 69fb08fbc4b1
parent 0 1afc9d2ab94d
permissions -rw-r--r--
Corrected max-height config missing from AnnotationsList in views using the widget

<?php namespace TestCAS\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;
}