diff options
| author | horus | 2020-02-17 13:17:18 +0100 |
|---|---|---|
| committer | horus | 2020-02-17 13:17:18 +0100 |
| commit | 9ea335ab9c8f9e17e8ce8b6a7e76962bec7ed418 (patch) | |
| tree | dec69240d0d34eebce1cca7aab1f070742187fed /app/Http/Controllers/Controller.php | |
| download | zeitumstellung-9ea335ab9c8f9e17e8ce8b6a7e76962bec7ed418.tar.gz | |
Initial commit.
Diffstat (limited to 'app/Http/Controllers/Controller.php')
| -rw-r--r-- | app/Http/Controllers/Controller.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php new file mode 100644 index 0000000..a0a2a8a --- /dev/null +++ b/app/Http/Controllers/Controller.php @@ -0,0 +1,13 @@ +<?php + +namespace App\Http\Controllers; + +use Illuminate\Foundation\Auth\Access\AuthorizesRequests; +use Illuminate\Foundation\Bus\DispatchesJobs; +use Illuminate\Foundation\Validation\ValidatesRequests; +use Illuminate\Routing\Controller as BaseController; + +class Controller extends BaseController +{ + use AuthorizesRequests, DispatchesJobs, ValidatesRequests; +} |
