mirror of
https://github.com/koel/koel
synced 2024-11-15 08:57:16 +00:00
0fff66ece8
* chore(deps-dev): bump filp/whoops from 2.7.0 to 2.7.1 Bumps [filp/whoops](https://github.com/filp/whoops) from 2.7.0 to 2.7.1. - [Release notes](https://github.com/filp/whoops/releases) - [Changelog](https://github.com/filp/whoops/blob/master/CHANGELOG.md) - [Commits](https://github.com/filp/whoops/compare/2.7.0...2.7.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * Apply fixes from StyleCI (#1172) Co-authored-by: Phan An <me@phanan.net>
15 lines
386 B
PHP
15 lines
386 B
PHP
<?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;
|
|
|
|
abstract class Controller extends BaseController
|
|
{
|
|
use AuthorizesRequests;
|
|
use DispatchesJobs;
|
|
use ValidatesRequests;
|
|
}
|