| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 49 | public function __construct($name, $image, $state = self::STATE_UNKNOWN, array $hosts = [], array $ports = [], $componentName = null, $ipAddress = null) |
||
| 50 | { |
||
| 51 | $this->name = $name; |
||
| 52 | $this->image = $image; |
||
| 53 | $this->hosts = $hosts; |
||
| 54 | $this->state = $state; |
||
| 55 | $this->ports = $ports; |
||
| 56 | $this->componentName = $componentName; |
||
| 57 | $this->ipAddress = $ipAddress; |
||
| 58 | } |
||
| 59 | |||
| 116 |