1 | <?php |
||
5 | class UUIDManager |
||
6 | { |
||
7 | /** |
||
8 | * @type string |
||
9 | */ |
||
10 | private $uuid; |
||
11 | |||
12 | public function __construct() |
||
20 | |||
21 | /* public function __toString() |
||
22 | { |
||
23 | return $this->uuid; |
||
24 | }*/ |
||
25 | |||
26 | |||
27 | /** |
||
28 | * |
||
29 | * This function will return a UUID |
||
30 | * |
||
31 | * @return type string |
||
32 | */ |
||
33 | public static function generate() |
||
53 | } |