1 | <?php |
||
8 | class SwapConfigRepository |
||
9 | { |
||
10 | /** |
||
11 | * $app. |
||
12 | * |
||
13 | * @var \Illuminate\Contracts\Foundation\Application |
||
14 | */ |
||
15 | protected $app; |
||
16 | |||
17 | /** |
||
18 | * $config. |
||
19 | * |
||
20 | * @var \Recca0120\Config\Contracts\Repository |
||
21 | */ |
||
22 | protected $config; |
||
23 | |||
24 | /** |
||
25 | * __construct. |
||
26 | * |
||
27 | * @param \Illuminate\Contracts\Foundation\Application $app |
||
28 | * @param \Recca0120\Config\Contracts\Repository $config |
||
29 | */ |
||
30 | 1 | public function __construct(Application $app, Repository $config) |
|
35 | |||
36 | /** |
||
37 | * handle. |
||
38 | * |
||
39 | * @param \Illuminate\Http\Request $request |
||
40 | * @param \Closure $next |
||
41 | * @return \Symfony\Component\HttpFoundation\Response |
||
42 | */ |
||
43 | 1 | public function handle($request, $next) |
|
50 | } |
||
51 |