Home
last modified time | relevance | path

Searched refs:addMinutes (Results 1 – 3 of 3) sorted by relevance

/webtrees/app/
H A DTimestamp.php90 public function addMinutes(int $minutes): TimestampInterface function in Fisharebest\\Webtrees\\Timestamp
93 $this->carbon->addMinutes($minutes)->getTimestamp(),
/webtrees/tests/app/
H A DTimestampTest.php148 self::assertSame('2023-12-17 16:22:19', $timestamp->addMinutes(1)->toDateTimeString());
149 self::assertSame('2023-12-17 16:20:19', $timestamp->addMinutes(-1)->toDateTimeString());
/webtrees/app/Contracts/
H A DTimestampInterface.php82 public function addMinutes(int $minutes): TimestampInterface; function