| 1 | <?php |
||
| 13 | abstract class AbstractMediaNormalizer implements NormalizerInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Checks whether the given class is supported for normalization by this normalizer |
||
| 17 | * |
||
| 18 | * @param mixed $data Data to normalize. |
||
| 19 | * @param string $format The format being (de-)serialized from or into. |
||
| 20 | * |
||
| 21 | * @return boolean |
||
| 22 | */ |
||
| 23 | public function supportsNormalization($data, $format = null) |
||
| 27 | } |
||
| 28 |