Searched refs:toDateTimeString (Results 1 – 5 of 5) sorted by relevance
/webtrees/tests/app/ |
H A D | TimestampTest.php | 121 self::assertSame('2023-12-17 16:21:19', $timestamp->toDateTimeString()); 138 self::assertSame('2023-12-17 16:21:19', $timestamp->toDateTimeString()); 139 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()); 147 self::assertSame('2023-12-17 16:21:19', $timestamp->toDateTimeString()); 148 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()); 156 self::assertSame('2023-12-17 16:21:19', $timestamp->toDateTimeString()); 157 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()); [all …]
|
/webtrees/app/ |
H A D | SessionDatabaseHandler.php | 93 'session_time' => $now->toDateTimeString(), 116 $updates['session_time'] = $now->toDateTimeString();
|
H A D | Timestamp.php | 71 public function toDateTimeString(): string function in Fisharebest\\Webtrees\\Timestamp
|
/webtrees/app/Contracts/ |
H A D | TimestampInterface.php | 61 public function toDateTimeString(): string; function
|
/webtrees/app/Module/ |
H A D | RecentChangesModule.php | 296 …e('change_time', '>', Registry::timestampFactory()->now()->subtractDays($days)->toDateTimeString())
|