Files
2026-03-21 21:02:15 +01:00

17 lines
303 B
PHP

<?php
namespace App\ValueObjects;
class Age {
function __construct(private \DateTime $birthday) {
}
public function getAge() : int {
return (new \DateTime())->diff($this->birthday)->y;
}
public function isfullAged() : bool {
return $this->getAge() >= 18;
}
}