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