| Conditions | 4 |
| Paths | 4 |
| Total Lines | 18 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public function handle($request, Closure $next) |
||
| 11 | { |
||
| 12 | $response = $next($request); |
||
| 13 | |||
| 14 | if (! config('cookie-consent.enabled')) { |
||
| 15 | return $response; |
||
| 16 | } |
||
| 17 | |||
| 18 | if (! $response instanceof Response) { |
||
| 19 | return $response; |
||
| 20 | } |
||
| 21 | |||
| 22 | if (! $this->containsBodyTag($response)) { |
||
| 23 | return $response; |
||
| 24 | } |
||
| 25 | |||
| 26 | return $this->addCookieConsentScriptToResponse($response); |
||
| 27 | } |
||
| 28 | |||
| 58 |