diff options
author | Jérémy Benoist <j0k3r@users.noreply.github.com> | 2017-06-01 10:29:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-01 10:29:32 +0200 |
commit | 5d03e2d1a58d7961aeb3b93dbd864731719af921 (patch) | |
tree | 702aa580c60c788ee51ace0ed79409491854c825 /src/Wallabag/UserBundle/Entity | |
parent | 2a0eec07a5630401a9ceb7add65604f79238f10c (diff) | |
parent | 3a6af6c580b686593045a8f0cfbfc478aa93943c (diff) | |
download | wallabag-5d03e2d1a58d7961aeb3b93dbd864731719af921.tar.gz wallabag-5d03e2d1a58d7961aeb3b93dbd864731719af921.tar.zst wallabag-5d03e2d1a58d7961aeb3b93dbd864731719af921.zip |
Merge pull request #3172 from wallabag/more-scruti
More Scrutinizer issues fixed
Diffstat (limited to 'src/Wallabag/UserBundle/Entity')
-rw-r--r-- | src/Wallabag/UserBundle/Entity/User.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Wallabag/UserBundle/Entity/User.php b/src/Wallabag/UserBundle/Entity/User.php index 1ff3046a..ed6ce331 100644 --- a/src/Wallabag/UserBundle/Entity/User.php +++ b/src/Wallabag/UserBundle/Entity/User.php | |||
@@ -64,7 +64,7 @@ class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterf | |||
64 | protected $email; | 64 | protected $email; |
65 | 65 | ||
66 | /** | 66 | /** |
67 | * @var date | 67 | * @var \DateTime |
68 | * | 68 | * |
69 | * @ORM\Column(name="created_at", type="datetime") | 69 | * @ORM\Column(name="created_at", type="datetime") |
70 | * | 70 | * |
@@ -73,7 +73,7 @@ class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterf | |||
73 | protected $createdAt; | 73 | protected $createdAt; |
74 | 74 | ||
75 | /** | 75 | /** |
76 | * @var date | 76 | * @var \DateTime |
77 | * | 77 | * |
78 | * @ORM\Column(name="updated_at", type="datetime") | 78 | * @ORM\Column(name="updated_at", type="datetime") |
79 | * | 79 | * |
@@ -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 | { |