1 | <?php declare(strict_types = 1); |
||
13 | class XMLConfigurator |
||
14 | { |
||
15 | 1 | public function configure(string $inputConfiguration) : array |
|
19 | |||
20 | /** |
||
21 | * function xml2array |
||
22 | * |
||
23 | * This function is part of the PHP manual. |
||
24 | * |
||
25 | * The PHP manual text and comments are covered by the Creative Commons |
||
26 | * Attribution 3.0 License, copyright (c) the PHP Documentation Group |
||
27 | * |
||
28 | * @author k dot antczak at livedata dot pl |
||
29 | * @date 2011-04-22 06:08 UTC |
||
30 | * @link http://www.php.net/manual/en/ref.simplexml.php#103617 |
||
31 | * @license http://www.php.net/license/index.php#doc-lic |
||
32 | * @license http://creativecommons.org/licenses/by/3.0/ |
||
33 | * @license CC-BY-3.0 <http://spdx.org/licenses/CC-BY-3.0> |
||
34 | */ |
||
35 | 1 | protected function xml2array($xmlObject, $out = array()) |
|
43 | } |
||
44 |