TYPO3 CMS  TYPO3_8-7
UserDomainClass.php
Go to the documentation of this file.
1 <?php
3 
21 {
22  protected $id;
23 
24  protected $firstName;
25 
26  protected $lastName;
27 
35  public function __construct($id, $firstName, $lastName)
36  {
37  $this->id = $id;
38  $this->firstName = $firstName;
39  $this->lastName = $lastName;
40  }
41 
47  public function getId()
48  {
49  return $this->id;
50  }
51 
57  public function getFirstName()
58  {
59  return $this->firstName;
60  }
61 
67  public function getLastName()
68  {
69  return $this->lastName;
70  }
71 }