Home
last modified time | relevance | path

Searched refs:addDays (Results 1 – 7 of 7) sorted by relevance

/webtrees/app/
H A DTimestamp.php108 public function addDays(int $days): TimestampInterface function in Fisharebest\\Webtrees\\Timestamp
111 $this->carbon->addDays($days)->getTimestamp(),
/webtrees/app/Module/
H A DUpcomingAnniversariesModule.php162 $startjd = Registry::timestampFactory()->now()->addDays(1)->julianDay();
163 $endjd = Registry::timestampFactory()->now()->addDays($days)->julianDay();
H A DYahrzeitModule.php98 $endjd = Registry::timestampFactory()->now()->addDays($days - 1)->julianDay();
H A DReviewChangesModule.php154 $next_email_timestamp = $last_email_timestamp->addDays($days);
/webtrees/app/Contracts/
H A DTimestampInterface.php96 public function addDays(int $days): TimestampInterface; function
/webtrees/app/Report/
H A DReportParserSetup.php129 $date = Registry::timestampFactory()->now()->addDays((int)$match[1]);
/webtrees/tests/app/
H A DTimestampTest.php166 self::assertSame('2023-12-18 16:21:19', $timestamp->addDays(1)->toDateTimeString());