1 | <?php |
||
10 | class EscapedStringParser implements ParserInterface |
||
11 | { |
||
12 | /** @var integer */ |
||
13 | const CLOSE_STRING_LENGTH = 2; |
||
14 | |||
15 | /** |
||
16 | * parse given `$source` as escaped string |
||
17 | * |
||
18 | * @param Source $source parser input |
||
19 | * @return array |
||
20 | * @throws UnserializeFailedException |
||
21 | */ |
||
22 | 22 | public function parse(Source $source) |
|
37 | } |
||
38 |