| 1 | <?php |
||
| 17 | class EntityIdDeserializer implements Deserializer { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var EntityIdParser |
||
| 21 | */ |
||
| 22 | private $entityIdParser; |
||
| 23 | |||
| 24 | 26 | public function __construct( EntityIdParser $entityIdParser ) { |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @see Deserializer::deserialize |
||
| 30 | * |
||
| 31 | * @param string $serialization |
||
| 32 | * |
||
| 33 | * @throws DeserializationException |
||
| 34 | * @return EntityId |
||
| 35 | */ |
||
| 36 | 15 | public function deserialize( $serialization ) { |
|
| 47 | |||
| 48 | } |
||
| 49 |