| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | 6 | public function __construct( |
|
| 44 | string $url, |
||
| 45 | string $description = null, |
||
| 46 | array $variables = null, |
||
| 47 | array $additionalProperties = [] |
||
| 48 | ) { |
||
| 49 | 6 | parent::__construct($additionalProperties); |
|
| 50 | 6 | $this->url = $url; |
|
| 51 | 6 | $this->description = $description; |
|
| 52 | 6 | $this->variables = $variables; |
|
| 53 | 6 | } |
|
| 55 |