Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
46 | public function handle($request, Closure $next) |
||
47 | { |
||
48 | if ($this->session->has($this->sessionKey)) { |
||
49 | $this->googleTagManager->set($this->session->get($this->sessionKey)); |
||
50 | } |
||
51 | |||
52 | $response = $next($request); |
||
53 | |||
54 | $this->session->flash($this->sessionKey, $this->googleTagManager->getFlashData()); |
||
55 | |||
56 | return $response; |
||
57 | } |
||
58 | } |
||
59 |