Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
44 | 10 | public function __construct(string $name, string $body, DateTimeImmutable $createdAt, bool $isExpendable, string $fifoGroupId = null) |
|
45 | { |
||
46 | 10 | $this->name = $name; |
|
47 | 10 | $this->body = $body; |
|
48 | 10 | $this->createdAt = $createdAt; |
|
49 | 10 | $this->isExpendable = $isExpendable; |
|
50 | 10 | $this->fifoGroupId = $fifoGroupId; |
|
51 | 10 | } |
|
52 | |||
101 |