Home
last modified time | relevance | path

Searched refs:subtractMinutes (Results 1 – 4 of 4) sorted by relevance

/webtrees/tests/app/
H A DTimestampTest.php46 self::assertSame('5 minutes ago', $timestamp->subtractMinutes(5)->diffForHumans());
55 self::assertSame('il y a 5 minutes', $timestamp->subtractMinutes(5)->diffForHumans());
199 self::assertSame('2023-12-17 16:20:19', $timestamp->subtractMinutes(1)->toDateTimeString());
200 … self::assertSame('2023-12-17 16:22:19', $timestamp->subtractMinutes(-1)->toDateTimeString());
/webtrees/app/Contracts/
H A DTimestampInterface.php124 public function subtractMinutes(int $minutes): TimestampInterface; function
/webtrees/app/
H A DSessionDatabaseHandler.php115 …if ($now->subtractMinutes(1)->timestamp() > Registry::timestampFactory()->fromString($this->row->s…
H A DTimestamp.php144 public function subtractMinutes(int $minutes): TimestampInterface function in Fisharebest\\Webtrees\\Timestamp