authserver/testCAS/app/Http/Controllers/Controller.php
author julien <julien@erret.com>
Fri, 31 Jul 2015 18:36:24 +0200
changeset 68 5002976e742d
parent 0 1afc9d2ab94d
permissions -rw-r--r--
comments the stylesheet and update video control interface and segment list interface

<?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;
}