| 1 | <?php |
||
| 8 | class IdFactory |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @deprecated Will be removed in version 2. Use createId() instead. |
||
| 12 | */ |
||
| 13 | public function create($raw) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Create ID object from raw id string |
||
| 25 | * |
||
| 26 | * @param string $raw Raw id string |
||
| 27 | * @return IdInterface |
||
| 28 | * @throws Exception\UnableToCreateIdException If unable to create id |
||
| 29 | */ |
||
| 30 | 1 | public function createId($raw) |
|
| 34 | } |
||
| 35 |