| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3.0987 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 1 | public function __construct(string $imageUrl, string $altText) |
|
| 30 | { |
||
| 31 | 1 | if (\strlen($imageUrl) > 3000) { |
|
| 32 | throw new \InvalidArgumentException('$imageUrl too long!'); |
||
| 33 | } |
||
| 34 | 1 | if (\strlen($altText) > 2000) { |
|
| 35 | throw new \InvalidArgumentException('$altText too long!'); |
||
| 36 | } |
||
| 37 | |||
| 38 | 1 | $this->type = MessageTypeEnum::ELEMENT_IMAGE; |
|
| 39 | 1 | $this->imageUrl = $imageUrl; |
|
| 40 | 1 | $this->altText = $altText; |
|
| 41 | 1 | } |
|
| 42 | } |
||
| 43 |