1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-10-10 19:32:07 +00:00

Add EntityTimestampsTrait to handle dates

Refactorize timestamps() method to avoid re-writing it on each entity
This commit is contained in:
Jeremy Benoist 2017-07-06 09:00:37 +02:00
parent b5d7eb148c
commit 927c9e796f
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
5 changed files with 36 additions and 48 deletions

View file

@ -15,6 +15,7 @@ use Symfony\Component\Security\Core\User\UserInterface;
use Wallabag\ApiBundle\Entity\Client;
use Wallabag\CoreBundle\Entity\Config;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Helper\EntityTimestampsTrait;
/**
* User.
@ -29,6 +30,8 @@ use Wallabag\CoreBundle\Entity\Entry;
*/
class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterface
{
use EntityTimestampsTrait;
/** @Serializer\XmlAttribute */
/**
* @var int
@ -138,19 +141,6 @@ class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterf
$this->roles = ['ROLE_USER'];
}
/**
* @ORM\PrePersist
* @ORM\PreUpdate
*/
public function timestamps()
{
if (null === $this->createdAt) {
$this->createdAt = new \DateTime();
}
$this->updatedAt = new \DateTime();
}
/**
* Set name.
*