1 | <?php |
||
7 | trait UuidAwareTrait |
||
8 | { |
||
9 | /** |
||
10 | * @var \Ramsey\Uuid\Uuid |
||
11 | */ |
||
12 | protected $uuid; |
||
13 | |||
14 | /** |
||
15 | * Set the Uuid driver |
||
16 | * |
||
17 | * @param \Ramsey\Uuid\Uuid $uuid |
||
18 | */ |
||
19 | public function setUuidDriver(Uuid $uuid) |
||
23 | |||
24 | /** |
||
25 | * Get the Uuid driver |
||
26 | * |
||
27 | * @return \Ramsey\Uuid\Uuid |
||
28 | */ |
||
29 | public function getUuidDriver() |
||
33 | } |
||
34 |