1 | <?php |
||
9 | class Shield |
||
10 | { |
||
11 | /** |
||
12 | * @var \Clarkeash\Shield\Manager |
||
13 | */ |
||
14 | protected $manager; |
||
15 | |||
16 | public function __construct(Manager $manager) |
||
20 | |||
21 | /** |
||
22 | * Handle an incoming request. |
||
23 | * |
||
24 | * @param \Illuminate\Http\Request $request |
||
25 | * @param \Closure $next |
||
26 | * @param string $service |
||
27 | * |
||
28 | * @return mixed |
||
29 | */ |
||
30 | public function handle($request, Closure $next, string $service) |
||
38 | } |
||
39 |