コード例 #1
0
 function __construct(User $user)
 {
     $this->username = $user->getUsername();
     $this->email = $user->getEmail();
     $this->fullname = $user->getFullName();
     $this->telephone = $user->getTelephone();
 }
コード例 #2
0
 public function __construct(User $model)
 {
     $this->id = $model->getId();
     $this->fullName = $model->getFullName();
     $this->username = $model->getUsername();
 }