| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 50 | public function __construct(int $id, int $seasonNumber, int $episodeCount = null, string $airDate = null, string $poster = null) |
||
| 51 | { |
||
| 52 | $this->id = $id; |
||
| 53 | $this->seasonNumber = $seasonNumber; |
||
| 54 | $this->episodeCount = $episodeCount; |
||
| 55 | $this->airDate = $airDate; |
||
| 56 | $this->poster = $poster; |
||
| 57 | } |
||
| 58 | } |
||
| 59 |