| Conditions | 3 |
| Paths | 4 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function handle($request, Closure $next, array $header = []) |
||
| 36 | { |
||
| 37 | $header = !empty($header) ? array_merge($this->header, $header) : $this->header; |
||
| 38 | |||
| 39 | if ($request->method(true) == 'OPTIONS') { |
||
| 40 | return Response::create()->code(204)->header($header); |
||
| 41 | } |
||
| 42 | |||
| 43 | return $next($request); |
||
| 44 | } |
||
| 46 |