Lines Matching refs:fn
28 check(fn() => DateTimeImmutable::createFromInterface($mdti));
29 check(fn() => DateTime::createFromImmutable($mdti));
30 check(fn() => serialize($mdti));
31 check(fn() => date_format($mdti, DateTime::ISO8601));
32 check(fn() => $mdti->format(DateTime::ISO8601));
33 check(fn() => $mdti->modify("+1 day"));
34 check(fn() => $mdti->add($di));
35 check(fn() => $mdti->sub($di));
36 check(fn() => date_timezone_get($mdti));
37 check(fn() => $mdti->getTimeZone());
38 check(fn() => $mdti->setTimeZone($dtz));
39 check(fn() => date_offset_get($mdti));
40 check(fn() => $mdti->getOffset());
41 check(fn() => $mdti->setTime(17, 59, 53));
42 check(fn() => $mdti->setDate(2023, 1, 16));
43 check(fn() => $mdti->setISODate(2023, 3, 1));
44 check(fn() => $mdti->setTimestamp(time()));
45 check(fn() => date_timestamp_get($mdti));
46 check(fn() => $mdti->getTimestamp());
47 check(fn() => date_diff($dt, $mdti));
48 check(fn() => date_diff($mdti, $dt));
49 check(fn() => date_diff($mdti, $mdti));
50 check(fn() => $dt->diff($mdti));
51 check(fn() => $mdti->diff($dt));
52 check(fn() => $mdti->diff($mdti));