We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c660cf commit 7a6f12bCopy full SHA for 7a6f12b
src/Types/DateTime.php
@@ -40,7 +40,6 @@ public function __construct(
40
41
/**
42
* Returns whether this DateTime Type follows conventions up until Neo4j version 4.
43
- * @return bool
44
*/
45
public function isLegacy(): bool
46
{
tests/Integration/OGMFormatterIntegrationTest.php
@@ -246,7 +246,7 @@ public function testDateTime(string $alias): void
246
if ($createdAt->isLegacy()) {
247
self::assertEquals(1_559_414_432, $createdAt->getSeconds());
248
} else {
249
- self::assertEquals(1_559_418_032 , $createdAt->getSeconds());
+ self::assertEquals(1_559_418_032, $createdAt->getSeconds());
250
}
251
252
self::assertEquals(142_000_000, $createdAt->getNanoseconds());
0 commit comments