blob: 90017b603914fb1282fc3559b6ac0d7d8d49c878 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 | <?php
class Person
{
    public $ID = -1;
    public $FirstName = '';
    public $LastName = '';
    public $WeightInKilograms = 0.0;
    public $HeightInMeters = 0.0;
    private $_birthDate = '';
    //setters and getter for BirthDate
    public function getBirthDate()
    {
        return $this->_birthDate;
    }
    public function setBirthDate($value)
    {
        $this->_birthDate = $value;
    }
}
 |