Home
last modified time | relevance | path

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

/webtrees/app/
H A DTimestamp.php99 public function addHours(int $hours): TimestampInterface function in Fisharebest\\Webtrees\\Timestamp
102 $this->carbon->addHours($hours)->getTimestamp(),
/webtrees/tests/app/
H A DTimestampTest.php157 self::assertSame('2023-12-17 17:21:19', $timestamp->addHours(1)->toDateTimeString());
158 self::assertSame('2023-12-17 15:21:19', $timestamp->addHours(-1)->toDateTimeString());
/webtrees/app/Contracts/
H A DTimestampInterface.php89 public function addHours(int $hours): TimestampInterface; function