Exemplo n.º 1
0
 public function __construct($title, $date, $publisher, $genre, $magazineNumber)
 {
     parent::__construct($title, $date, $publisher, $genre);
     $this->magazineNumber = $magazineNumber;
 }
Exemplo n.º 2
0
 public function __construct($title, $date, $publisher, $genre, $author, $cover)
 {
     parent::__construct($title, $date, $publisher, $genre);
     $this->author = $author;
     $this->cover = $cover;
 }