| 1 | <?php |
||
| 12 | class FloatParser implements ParserInterface |
||
| 13 | { |
||
| 14 | /** @var array $mapping parser result mapping */ |
||
| 15 | private $mapping; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * constructor |
||
| 19 | */ |
||
| 20 | 51 | public function __construct() |
|
| 28 | |||
| 29 | /** |
||
| 30 | * parse given `$source` as PHP serialized float number |
||
| 31 | * |
||
| 32 | * @param Source $source parser input |
||
| 33 | * @return array |
||
| 34 | * @throws UnserializeFailedException |
||
| 35 | */ |
||
| 36 | 29 | public function parse(Source $source) |
|
| 46 | } |
||
| 47 |