| 1 | <?php |
||
| 11 | trait EditableULIDTrait |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | * |
||
| 16 | * @Id() |
||
| 17 | * @GeneratedValue(strategy="NONE") |
||
| 18 | * @Column(type="string", length=26) |
||
| 19 | */ |
||
| 20 | private $id; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return string |
||
| 24 | */ |
||
| 25 | public function getId(): ?string |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param string $id |
||
| 32 | */ |
||
| 33 | public function setId(string $id): void |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @PrePersist() |
||
| 40 | * @internal |
||
| 41 | */ |
||
| 42 | public function _setIdOnPersist() |
||
| 50 | } |
||
| 51 |