Slide 19
Slide 19 text
例えばこんなのは
class Main {
public function execute() : void
{
echo Util::getTomorrow(new \DateTimeImmutable('1980-01-01'))
->format('Y/m/d'), PHP_EOL;
}
}
class Util {
public static function getTomorrow(\DateTimeImmutable $today) : ?\DateTimeImmutable
{
//
ノストラダムスの⼤予⾔によって世界が滅びるので明⽇は無い
$endDayOfTheWorld = new \DateTimeImmutable('1999-07-31');
return ($today >= $endDayOfTheWorld) ? null :
$today->modify('+1 day');
}
}