Skip to content

Commit

Permalink
Merge pull request #5 from DariusIII/patch-1
Browse files Browse the repository at this point in the history
Fix issues with having null values for firstAired and network attributes
  • Loading branch information
canihavesomecoffee authored Nov 18, 2019
2 parents 562e8c9 + 91283db commit 3c69c55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Model/BasicSeries.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class BasicSeries
/**
* The Y-M-D representation of the first time the show aired.
*
* @var string
* @var string|null
*/
public $firstAired;
/**
Expand All @@ -63,7 +63,7 @@ class BasicSeries
/**
* The network the serie airs on.
*
* @var string
* @var string|null
*/
public $network;
/**
Expand Down

0 comments on commit 3c69c55

Please sign in to comment.