1 | <?php |
||
10 | class IntegerHandler implements HandlerInterface |
||
11 | { |
||
12 | /** |
||
13 | * parse given `$source` as PHP serialized integer |
||
14 | * |
||
15 | * @param Source $source parser input |
||
16 | * @param string $args integer value |
||
17 | * @return array |
||
18 | * @throws UnserializeFailedException |
||
19 | */ |
||
20 | 9 | public function handle(Source $source, $args) |
|
24 | } |
||
25 |