Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php namespace FlatPlan\Components; |
||
44 | public function getComponent() |
||
45 | { |
||
46 | $component = new \stdClass(); |
||
47 | $component->role = $this->getRole(); |
||
48 | $component->items = $this->getComponents(); |
||
49 | $component->layout = $this->layout; |
||
50 | $component->style = $this->style; |
||
51 | return $component; |
||
52 | } |
||
54 |