| 1 | <?php |
||
| 12 | class FloatHandler implements HandlerInterface |
||
| 13 | { |
||
| 14 | /** @var array $mapping parser result mapping */ |
||
| 15 | private $mapping; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * constructor |
||
| 19 | */ |
||
| 20 | 107 | public function __construct() |
|
| 28 | |||
| 29 | /** |
||
| 30 | * parse given `$source` as PHP serialized float number |
||
| 31 | * |
||
| 32 | * @param Source $source parser input |
||
| 33 | * @param string $args submatched |
||
| 34 | * @return array |
||
| 35 | * @throws UnserializeFailedException |
||
| 36 | */ |
||
| 37 | 15 | public function handle(Source $source, $args) |
|
| 44 | } |
||
| 45 |