| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function __construct(array $servers, string $shellCommand, array $envVars = []) |
||
| 16 | { |
||
| 17 | if (empty($servers)) { |
||
| 18 | throw new \InvalidArgumentException('The "servers" argument of a Task cannot be an empty array. Add at least one server.'); |
||
| 19 | } |
||
| 20 | |||
| 21 | $this->servers = $servers; |
||
| 22 | $this->shellCommand = $shellCommand; |
||
| 23 | $this->envVars = $envVars; |
||
| 24 | } |
||
| 60 |