Total Complexity | 2 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | class TraitNodeParser extends AbstractNodeParser |
||
20 | { |
||
21 | /** |
||
22 | * InterfaceNodeParser constructor. |
||
23 | * |
||
24 | * @param MethodNodeParser $methodNodeParser The method node parser. |
||
25 | * @param AttributeNodeParser $attributeNodeParser The attribute node parser. |
||
26 | */ |
||
27 | public function __construct(MethodNodeParser $methodNodeParser, AttributeNodeParser $attributeNodeParser) |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | public function parse(Node $node, NodeInterface $parent): NodeInterface |
||
53 |