opifer / revisions
保留实体数据的修订和草稿
0.1
2016-03-24 11:48 UTC
Requires
- php: >=5.4
- doctrine/doctrine-bundle: ~1.4
- doctrine/orm: ^2.5.4
Requires (Dev)
- mockery/mockery: ~0.9
- phpunit/phpunit: ~4.2.0
- symfony/phpunit-bridge: ~2.7
This package is auto-updated.
Last update: 2024-09-10 17:24:36 UTC
README
修订
修订实体示例
<?php namespace Entity; use Opifer\Revisions\Mapping\Annotation as Revisions; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Table(name="articles") * @ORM\Entity */ class Article { /** @ORM\Id @ORM\GeneratedValue @ORM\Column(type="integer") */ private $id; /** * @Revisions\Revised * @ORM\Column(length=128) */ private $title; /** * @Revisions\Revised * @ORM\Column(type="text") */ private $content; /** * @Revisions\Draft */ private $draft; }