Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | 9 | public function __construct( |
|
33 | string $name, |
||
34 | int $ttl, |
||
35 | int $priority, |
||
36 | int $weight, |
||
37 | int $port, |
||
38 | string $target |
||
39 | ) { |
||
40 | 9 | parent::__construct($name, $ttl); |
|
41 | 9 | $this->priority = $priority; |
|
42 | 9 | $this->weight = $weight; |
|
43 | 9 | $this->port = $port; |
|
44 | 9 | $this->target = $target; |
|
45 | 9 | } |
|
60 |