Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
51 | private function __construct(string $message, string $user, string $location, array $hashtags, \DateTimeInterface $createdAt) |
||
52 | { |
||
53 | $this->message = $message; |
||
54 | $this->user = $user; |
||
55 | $this->hashtags = $hashtags; |
||
56 | $this->location = $location; |
||
57 | $this->createdAt = $createdAt; |
||
58 | } |
||
59 | |||
112 |