1 | <?php |
||
22 | class MaxDepthExclusionStrategy extends ExclusionStrategy |
||
23 | { |
||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | 9 | public function skipClass(ClassMetadataInterface $class, ContextInterface $context) |
|
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | 9 | public function skipType(TypeMetadataInterface $type, ContextInterface $context) |
|
39 | |||
40 | /** |
||
41 | * @param ContextInterface $context |
||
42 | * |
||
43 | * @return bool |
||
44 | */ |
||
45 | 9 | private function skip(ContextInterface $context) |
|
72 | } |
||
73 |