| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function __construct( |
||
| 33 | string $name, |
||
| 34 | array $attributes = [], |
||
| 35 | array $functions = [], |
||
| 36 | array $implements = [], |
||
| 37 | $extends = null |
||
| 38 | ) { |
||
| 39 | $this->name = $name; |
||
| 40 | $this->attributes = $attributes; |
||
| 41 | $this->functions = $functions; |
||
| 42 | $this->implements = $implements; |
||
| 43 | $this->extends = $extends; |
||
| 44 | } |
||
| 72 |