Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | private function __construct() |
||
18 | { |
||
19 | $this->handlers = collect(config('sarala.handlers')); |
||
20 | |||
21 | $this->handler = $this->handlers |
||
22 | ->where('media_type', request()->header('Accept')) |
||
23 | ->first(); |
||
24 | |||
25 | $this->supportedMediaTypes = $this->handlers |
||
26 | ->pluck('media_type') |
||
27 | ->all(); |
||
28 | } |
||
29 | |||
49 |