예제 #1
0
 public function testGetSetLastname()
 {
     $this->person->setLastname('McLean');
     $this->assertEquals('McLean', $this->person->getLastname());
 }
예제 #2
0
 /**
  * @param Person $person
  * @return array
  */
 public function toArray(Person $person)
 {
     $data = ['id' => $person->getId(), 'firstname' => $person->getFirstname(), 'middlename' => $person->getMiddlename(), 'lastname' => $person->getLastname(), 'aka' => $person->getAka(), 'dob' => $person->getDob(), 'birthplace' => $person->getBirthplace(), 'country' => $person->getCountry()];
     return $data;
 }