1 | <?php declare(strict_types = 1); |
||
18 | class XMLContainerBuilder extends ContainerBuilder |
||
19 | { |
||
20 | /** |
||
21 | * Resolve xml config |
||
22 | * |
||
23 | * @param string $xmlConfig |
||
24 | * |
||
25 | */ |
||
26 | 1 | public function __construct($xmlConfig, FileManagerInterface $fileManager, ResolverInterface $classResolver, Generator $generator) |
|
54 | |||
55 | /** |
||
56 | * function xml2array |
||
57 | * |
||
58 | * This function is part of the PHP manual. |
||
59 | * |
||
60 | * The PHP manual text and comments are covered by the Creative Commons |
||
61 | * Attribution 3.0 License, copyright (c) the PHP Documentation Group |
||
62 | * |
||
63 | * @author k dot antczak at livedata dot pl |
||
64 | * @date 2011-04-22 06:08 UTC |
||
65 | * @link http://www.php.net/manual/en/ref.simplexml.php#103617 |
||
66 | * @license http://www.php.net/license/index.php#doc-lic |
||
67 | * @license http://creativecommons.org/licenses/by/3.0/ |
||
68 | * @license CC-BY-3.0 <http://spdx.org/licenses/CC-BY-3.0> |
||
69 | */ |
||
70 | 1 | protected function xml2array($xmlObject, $out = array()) |
|
78 | } |
||
79 |