Skip to content

Commit 99e0bc6

Browse files
committed
From and to XML constants
1 parent f2ef2c7 commit 99e0bc6

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

tests/Constant.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php declare(strict_types=1);
2+
3+
namespace ApiClients\Tests\Middleware\Xml;
4+
5+
final class Constant
6+
{
7+
const XML = '<?xml version="1.0" encoding="UTF-8"?><foo><bar>beer</bar></foo>';
8+
const TREE = [
9+
'foo' => [
10+
'bar' => 'beer',
11+
],
12+
];
13+
}

0 commit comments

Comments
 (0)