public function __construct(User $user, Registration $registration)
 {
     parent::__construct($user);
     $this->registration = $registration;
 }
示例#2
0
 public function __construct(User $user, Profile $profile)
 {
     parent::__construct($user);
     $this->profile = $profile;
 }