| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 86 | 6 | private function __construct( |
|
| 87 | UuidInterface $uuid, |
||
| 88 | string $name, |
||
| 89 | ?string $etag = null, |
||
| 90 | ?DateTime $updatedAt = null, |
||
| 91 | ?UuidInterface $updatedBy = null, |
||
| 92 | ?DateTime $createdAt = null |
||
| 93 | ) { |
||
| 94 | 6 | $this->uuid = $uuid; |
|
| 95 | 6 | $this->name = $name; |
|
| 96 | 6 | $this->etag = $etag; |
|
| 97 | 6 | $this->updatedAt = $updatedAt; |
|
| 98 | 6 | $this->updatedBy = $updatedBy; |
|
| 99 | 6 | $this->createdAt = $createdAt; |
|
| 100 | 6 | } |
|
| 101 | } |
||
| 102 |