Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | public function __construct($destination) |
||
28 | { |
||
29 | $this->uuid = $destination->uuid; |
||
30 | $this->label = $destination->label; |
||
31 | $this->address = $destination->address; |
||
32 | $this->consumer = $destination->consumer; |
||
33 | $this->credentials = $destination->credentials; |
||
34 | $this->sources = $destination->sources; |
||
35 | $this->status = $destination->status; |
||
36 | $this->flags = $destination->flags; |
||
37 | $this->health = $destination->health; |
||
38 | $this->environment = $destination->environment; |
||
39 | } |
||
41 |