Quellcode durchsuchen

Timestamp type causes incorrect dates to be set.

If you use @ODM\Timestamp as the type for Timestampable fields,
the dates get stored incorrectly in MongoDB. Using Date for both
created and updated fixes the issue.

Phil Moorhouse vor 13 Jahren
Ursprung
Commit
87b3b3bf2c
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      doc/timestampable.md

+ 2 - 2
doc/timestampable.md

@@ -165,9 +165,9 @@ class Article
     private $title;
 
     /**
-     * @var timestamp $created
+     * @var date $created
      *
-     * @ODM\Timestamp
+     * @ODM\Date
      * @Gedmo\Timestampable(on="create")
      */
     private $created;