mediamonks /
php-rest-api
| 1 | <?php |
||
| 2 | |||
| 3 | namespace MediaMonks\RestApi\Serializer; |
||
| 4 | |||
| 5 | trait SerializerTrait |
||
| 6 | { |
||
| 7 | public function supportsFormat(string $format): bool |
||
| 8 | { |
||
| 9 | return in_array($format, $this->getSupportedFormats()); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 10 | } |
||
| 11 | } |
||
| 12 |