Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function handle(Request $request, Closure $next, $customProfileClass = null) |
||
12 | { |
||
13 | $response = $next($request); |
||
14 | |||
15 | $this |
||
16 | ->getProfiles($customProfileClass, $response) |
||
17 | ->filter->shouldBeApplied($request, $response) |
||
18 | ->each->applyTo($response); |
||
19 | |||
20 | return $response; |
||
21 | } |
||
22 | |||
54 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.