| 1 | <?php |
||
| 22 | class ExclusionStrategy implements ExclusionStrategyInterface |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * {@inheritdoc} |
||
| 26 | */ |
||
| 27 | public function skipClass(ClassMetadataInterface $class, ContextInterface $context) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | public function skipProperty(PropertyMetadataInterface $property, ContextInterface $context) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritdoc} |
||
| 42 | */ |
||
| 43 | public function skipType(TypeMetadataInterface $type, ContextInterface $context) |
||
| 47 | } |
||
| 48 |