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