| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | 1 | public function __construct( |
|
| 25 | Pid $pid, |
||
| 26 | User $user, |
||
| 27 | Percentage $cpu, |
||
| 28 | Bytes $memory, |
||
| 29 | PointInTimeInterface $start, |
||
| 30 | Command $command |
||
| 31 | ) { |
||
| 32 | 1 | $this->pid = $pid; |
|
| 33 | 1 | $this->user = $user; |
|
| 34 | 1 | $this->cpu = $cpu; |
|
| 35 | 1 | $this->memory = $memory; |
|
| 36 | 1 | $this->start = $start; |
|
| 37 | 1 | $this->command = $command; |
|
| 38 | 1 | } |
|
| 39 | |||
| 70 |