aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/Entry.php
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2020-03-28 16:38:12 +0100
committerGitHub <noreply@github.com>2020-03-28 16:38:12 +0100
commit26467fa6b48d5ac2ea5fdab0e17eb1e585aee330 (patch)
treecdd84e67cc10eb3ea4e57bbb4efee52a1cafc00c /src/Wallabag/CoreBundle/Entity/Entry.php
parentdcfce5468186fb18f6a23af46fcdc2513adf1cc0 (diff)
parent8ee7b1603d23297a6c183105f79b1290ce9828bf (diff)
downloadwallabag-26467fa6b48d5ac2ea5fdab0e17eb1e585aee330.tar.gz
wallabag-26467fa6b48d5ac2ea5fdab0e17eb1e585aee330.tar.zst
wallabag-26467fa6b48d5ac2ea5fdab0e17eb1e585aee330.zip
Merge pull request #4299 from wallabag/fix/4133
Fix createdAt filter on material
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity/Entry.php')
-rw-r--r--src/Wallabag/CoreBundle/Entity/Entry.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Entry.php b/src/Wallabag/CoreBundle/Entity/Entry.php
index 19045798..0e19a0c2 100644
--- a/src/Wallabag/CoreBundle/Entity/Entry.php
+++ b/src/Wallabag/CoreBundle/Entity/Entry.php
@@ -552,7 +552,7 @@ class Entry
552 * 552 *
553 * @return Entry 553 * @return Entry
554 */ 554 */
555 public function setCreatedAt(\DateTime $createdAt) 555 public function setCreatedAt(\DateTimeInterface $createdAt)
556 { 556 {
557 $this->createdAt = $createdAt; 557 $this->createdAt = $createdAt;
558 558