Conditions | 2 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | public function build(Interface_ $interface): RawDefinition |
||
35 | { |
||
36 | return RawDefinition::interface([ |
||
37 | 'interface' => $interface->name, |
||
38 | 'methods' => $this->methodsBuilder->build($interface), |
||
39 | 'extends' => !empty($interface->extends) ? end($interface->extends)->getLast() : null, |
||
40 | ]); |
||
43 |