Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class HandleLaraflash |
||
10 | { |
||
11 | protected $laraflash; |
||
12 | |||
13 | protected $laraflashToucher; |
||
14 | |||
15 | public function __construct(LaraflashPreparerContract $laraflashToucher) |
||
16 | { |
||
17 | $this->laraflash = Container::getInstance()->make('laraflash'); |
||
18 | |||
19 | $this->laraflashToucher = $laraflashToucher; |
||
20 | } |
||
21 | |||
22 | public function handle($request, Closure $next) |
||
33 | } |
||
34 | } |
||
35 |