Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
25 | 3 | public function __construct(?string $originalTitle, ?string $originalPosterUrl, ?string $imdbId, ?int $budget, ?int $runtime, ?string $releaseDate) |
|
26 | { |
||
27 | 3 | $this->originalTitle = $originalTitle; |
|
28 | 3 | $this->originalPosterUrl = $originalPosterUrl; |
|
29 | 3 | $this->imdbId = $imdbId; |
|
30 | 3 | $this->budget = $budget; |
|
31 | 3 | $this->runtime = $runtime; |
|
32 | 3 | $this->releaseDate = new \DateTimeImmutable($releaseDate); |
|
33 | 3 | } |
|
34 | |||
82 | } |