Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
17 | 1 | public function create(?array $ops = null): Hero |
|
18 | { |
||
19 | 1 | $component = new Hero(); |
|
20 | 1 | $this->init($component, $ops); |
|
21 | 1 | $component->setTitle($this->ops['title']); |
|
22 | 1 | $component->setSubtitle($this->ops['subtitle']); |
|
23 | 1 | $component->setTabs($this->ops['tabs']); |
|
24 | 1 | $this->validate($component); |
|
25 | 1 | return $component; |
|
26 | } |
||
43 |