| 1 | <?php |
||
| 11 | class Post implements JsonSerializable |
||
| 12 | { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @Id |
||
| 16 | * @Column(type="integer") |
||
| 17 | * @GeneratedValue |
||
| 18 | */ |
||
| 19 | protected $id; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @Column(type="string") |
||
| 23 | */ |
||
| 24 | protected $title; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @Column(type="text", length=65535) |
||
| 28 | */ |
||
| 29 | protected $content; |
||
| 30 | |||
| 31 | |||
| 32 | public function jsonSerialize() |
||
| 40 | } |
||
| 41 |