Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2.0078 |
Changes | 0 |
1 | <?php |
||
14 | 5 | public function __construct(string $locale, string $title, ?string $overview, ?string $posterUrl) |
|
15 | { |
||
16 | 5 | if (mb_strlen($title) >= 100) { |
|
17 | $title = mb_substr($title, 0, 96) . '...'; |
||
18 | } |
||
19 | |||
20 | 5 | $this->locale = $locale; |
|
21 | 5 | $this->title = $title; |
|
22 | 5 | $this->overview = $overview; |
|
23 | 5 | $this->posterUrl = $posterUrl; |
|
24 | 5 | } |
|
25 | |||
58 |