Home
last modified time | relevance | path

Searched refs:subtractMonths (Results 1 – 6 of 6) sorted by relevance

/webtrees/tests/app/
H A DTimestampTest.php43 self::assertSame('5 months ago', $timestamp->subtractMonths(5)->diffForHumans());
52 self::assertSame('il y a 5 mois', $timestamp->subtractMonths(5)->diffForHumans());
226 self::assertSame('2023-11-17 16:21:19', $timestamp->subtractMonths(1)->toDateTimeString());
227 self::assertSame('2024-01-17 16:21:19', $timestamp->subtractMonths(-1)->toDateTimeString());
/webtrees/app/Contracts/
H A DTimestampInterface.php145 public function subtractMonths(int $months): TimestampInterface; function
/webtrees/app/Http/RequestHandlers/
H A DUsersCleanupPage.php54 $inactive_threshold = Registry::timestampFactory()->now()->subtractMonths(6)->timestamp();
/webtrees/tests/app/Module/
H A DChangeReportModuleTest.php104 …'changeRangeStart' => ['id' => Registry::timestampFactory()->now()->subtractMonths(1)->format('d M…
/webtrees/app/
H A DTimestamp.php171 public function subtractMonths(int $months): TimestampInterface function in Fisharebest\\Webtrees\\Timestamp
/webtrees/app/Services/
H A DMessageService.php196 … $six_months_ago = Registry::timestampFactory()->now()->subtractMonths(6)->timestamp();