Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/framework/Config/Test/Unit/_files/dom/converter/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/Config/Test/Unit/_files/dom/converter/cdata.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

return [
    'root' => [
        [
            'simple' => [['node_two' => [['__content__' => 'valueOne']]]],
            'cdata' => [['node_one' => [['__content__' => '<valueTwo>']]]],
            'mixed' => [
                [
                    'node_one' => [
                        ['__attributes__' => ['attributeOne' => '10'], '__content__' => '<valueThree>'],
                        ['__attributes__' => ['attributeTwo' => '20'], '__content__' => 'valueFour'],
                    ],
                ],
            ],
            'mixed_different_names' => [
                [
                    'node_one' => [['__content__' => 'valueFive']],
                    'node_two' => [['__content__' => 'valueSix']],
                ],
            ],
        ],
    ]
];