Просмотр исходного кода

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 13 лет назад
Родитель
Сommit
87b3b3bf2c
1 измененных файлов с 2 добавлено и 2 удалено
  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;