コード例 #1
0
ファイル: Band.php プロジェクト: rigobertbot/meta-player
 public function __construct($name, \DateTime $foundDate, \DateTime $endDate = null)
 {
     parent::__construct($name, $foundDate, $endDate);
 }
コード例 #2
0
ファイル: UserBand.php プロジェクト: rigobertbot/meta-player
 public function __construct(User $user, $name, \DateTime $foundDate, $source, \DateTime $endDate = null)
 {
     parent::__construct($name, $foundDate, $endDate);
     $this->user = $user;
     $this->source = $source;
 }