Home
last modified time | relevance | path

Searched refs:subtractDays (Results 1 – 5 of 5) sorted by relevance

/webtrees/tests/app/
H A DTimestampTest.php44 self::assertSame('5 days ago', $timestamp->subtractDays(5)->diffForHumans());
53 self::assertSame('il y a 5 jours', $timestamp->subtractDays(5)->diffForHumans());
217 self::assertSame('2023-12-16 16:21:19', $timestamp->subtractDays(1)->toDateTimeString());
218 self::assertSame('2023-12-18 16:21:19', $timestamp->subtractDays(-1)->toDateTimeString());
/webtrees/app/Module/
H A DRecentChangesModule.php296 …->where('change_time', '>', Registry::timestampFactory()->now()->subtractDays($days)->toDateTimeSt…
324 $julian_day = Registry::timestampFactory()->now()->subtractDays($days)->julianDay();
/webtrees/app/Contracts/
H A DTimestampInterface.php138 public function subtractDays(int $days): TimestampInterface; function
/webtrees/app/Http/RequestHandlers/
H A DUsersCleanupPage.php55 $unverified_threshold = Registry::timestampFactory()->now()->subtractDays(7)->timestamp();
/webtrees/app/
H A DTimestamp.php162 public function subtractDays(int $days): TimestampInterface function in Fisharebest\\Webtrees\\Timestamp