Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
15 | public function handle($request, Closure $next) { |
||
1 ignored issue
–
show
|
|||
16 | |||
17 | $response = $next($request); |
||
18 | |||
19 | $response->headers->set('X-Frame-Options', 'SAMEORIGIN'); |
||
20 | |||
21 | return $response; |
||
22 | } |
||
24 |