aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2017-06-01 09:36:01 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2017-06-01 09:36:01 +0200
commit3a6af6c580b686593045a8f0cfbfc478aa93943c (patch)
tree702aa580c60c788ee51ace0ed79409491854c825
parent10bf812a9ed6364902eb0382fe261f3ec0ae7254 (diff)
downloadwallabag-3a6af6c580b686593045a8f0cfbfc478aa93943c.tar.gz
wallabag-3a6af6c580b686593045a8f0cfbfc478aa93943c.tar.zst
wallabag-3a6af6c580b686593045a8f0cfbfc478aa93943c.zip
fixup! Set the right variable type
-rw-r--r--src/Wallabag/UserBundle/Entity/User.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Wallabag/UserBundle/Entity/User.php b/src/Wallabag/UserBundle/Entity/User.php
index 6cc962b8..ed6ce331 100644
--- a/src/Wallabag/UserBundle/Entity/User.php
+++ b/src/Wallabag/UserBundle/Entity/User.php
@@ -157,7 +157,7 @@ class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterf
157 } 157 }
158 158
159 /** 159 /**
160 * @return string 160 * @return \DateTime
161 */ 161 */
162 public function getCreatedAt() 162 public function getCreatedAt()
163 { 163 {
@@ -165,7 +165,7 @@ class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterf
165 } 165 }
166 166
167 /** 167 /**
168 * @return string 168 * @return \DateTime
169 */ 169 */
170 public function getUpdatedAt() 170 public function getUpdatedAt()
171 { 171 {