thunbolt / doctrine-timestamp

此包最新版本(v4.0.0)没有可用的许可证信息。

v4.0.0 2020-01-04 19:12 UTC

This package is auto-updated.

Last update: 2024-09-05 05:46:29 UTC


README

用法

extensions:
    - Thunbolt\Doctrine\DI\TimestampExtension

用于创建和更新字段

/**
 * @ORM\Entity()
 */
class Entity {

    use Thunbolt\Doctrine\Traits\Timestamp;

}

用于创建

/**
 * @ORM\Entity()
 */
class Entity {

    use Thunbolt\Doctrine\Traits\TimestampCreated;

}

用于更新

/**
 * @ORM\Entity()
 */
class Entity {

    use Thunbolt\Doctrine\Traits\TimestampUpdated;

}