| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 50 | public function __construct($name, $theme, $type, $version, $description, array $positions, $attributes = []) |
||
| 51 | { |
||
| 52 | $this->name = $name; |
||
| 53 | $this->theme = $theme; |
||
| 54 | $this->type = $type; |
||
| 55 | $this->version = $version; |
||
| 56 | $this->description = $description; |
||
| 57 | $this->positions = $positions; |
||
| 58 | |||
| 59 | parent::__construct($attributes); |
||
| 60 | } |
||
| 61 | |||
| 82 |