| Conditions | 4 |
| Paths | 4 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public function canConvert(Media $media): bool |
||
| 11 | { |
||
| 12 | if (! $this->requirementsAreInstalled()) { |
||
| 13 | return false; |
||
| 14 | } |
||
| 15 | |||
| 16 | if ($this->supportedExtensions()->contains(strtolower($media->extension))) { |
||
| 17 | return true; |
||
| 18 | } |
||
| 19 | |||
| 20 | if ($this->supportedMimetypes()->contains(strtolower($media->mime_type))) { |
||
| 21 | return true; |
||
| 22 | } |
||
| 23 | |||
| 24 | return false; |
||
| 25 | } |
||
| 26 | |||
| 48 |