Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 440 Bytes

person.md

File metadata and controls

19 lines (15 loc) · 440 Bytes

Person

This groups Value Objects use for person, e.g. for employees, or for any other person in your projects.

Birthday

use Myks92\ValueObjects\Person\Birthday;

$birthday = new Birthday(new DateTimeImmutable('2011-01-01'));
$birthday->getAge(); //get Age::class
$birthday->getDate()->format('Y-m-d'); //2011-01-01

Age

use Myks92\ValueObjects\Person\Age;

$birthday = new Age(12);
$birthday->getValue(); //12