1
0
mirror of https://github.com/exane/not-gwent-online synced 2025-01-22 22:09:00 +00:00

13 lines
294 B
PHP
Raw Normal View History

2015-06-19 18:50:05 +02:00
<?php
namespace Gwent\Http\Controllers;
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Routing\Controller as BaseController;
use Illuminate\Foundation\Validation\ValidatesRequests;
abstract class Controller extends BaseController
{
use DispatchesJobs, ValidatesRequests;
}