Home
last modified time | relevance | path

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

/webtrees/app/
H A DTimestamp.php81 public function addSeconds(int $seconds): TimestampInterface function in Fisharebest\\Webtrees\\Timestamp
84 $this->carbon->addSeconds($seconds)->getTimestamp(),
/webtrees/tests/app/
H A DTimestampTest.php139 self::assertSame('2023-12-17 16:21:20', $timestamp->addSeconds(1)->toDateTimeString());
140 self::assertSame('2023-12-17 16:21:18', $timestamp->addSeconds(-1)->toDateTimeString());
/webtrees/app/Contracts/
H A DTimestampInterface.php75 public function addSeconds(int $seconds): TimestampInterface; function