| 1 | <?php |
||
| 12 | final class BestParserDelegate implements Parser |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var NativeParser |
||
| 16 | */ |
||
| 17 | private $nativeParser; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var XmlReaderParser |
||
| 21 | */ |
||
| 22 | private $xmlReaderParser; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param bool $validateResponse |
||
| 26 | */ |
||
| 27 | public function __construct($validateResponse = true) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | public function parse($xmlString) |
||
| 42 | } |
||
| 43 |