Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/Tmdb/Model/Tv/Episode.php
Original file line number Diff line number Diff line change
Expand Up @@ -512,17 +512,17 @@ public function setShowId(int $showId): Episode
}

/**
* @return int
* @return int|null
*/
public function getRuntime(): int
public function getRuntime(): ?int
{
return $this->runtime;
}

/**
* @param int $runtime
* @param int|null $runtime
*/
public function setRuntime(int $runtime): void
public function setRuntime(int $runtime = null): void
{
$this->runtime = $runtime;
}
Expand Down