authserver/testCAS/app/Http/Controllers/Controller.php
author ymh <ymh.work@gmail.com>
Fri, 11 Sep 2015 14:07:13 +0200
changeset 124 8b742651d655
parent 0 1afc9d2ab94d
permissions -rw-r--r--
Correct monkeypatching + create new version to test on live server

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