server/src/app/Http/Controllers/Controller.php
author nowmad@23.1.168.192.in-addr.arpa
Thu, 17 Dec 2015 12:14:57 +0100
changeset 66 b7e750ed3ef5
parent 2 00e2916104fe
child 27 a2342f26c9de
permissions -rw-r--r--
show more information in result list and add action to play or to show more details about the item

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