mirror of
https://github.com/koel/koel
synced 2024-12-22 10:33:16 +00:00
20 lines
456 B
PHP
20 lines
456 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Middleware;
|
||
|
|
||
|
use App\JWTAuth;
|
||
|
use Illuminate\Events\Dispatcher;
|
||
|
use Illuminate\Routing\ResponseFactory;
|
||
|
use Tymon\JWTAuth\Middleware\BaseMiddleware as JWTBaseMiddleware;
|
||
|
|
||
|
abstract class BaseMiddleware extends JWTBaseMiddleware
|
||
|
{
|
||
|
/**
|
||
|
* {@inheritdoc}
|
||
|
*/
|
||
|
public function __construct(ResponseFactory $response, Dispatcher $events, JWTAuth $auth)
|
||
|
{
|
||
|
parent::__construct($response, $events, $auth);
|
||
|
}
|
||
|
}
|