-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlattenConfig.php
46 lines (38 loc) · 1003 Bytes
/
FlattenConfig.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
declare(strict_types=1);
namespace Inspirum\XML\Formatter;
final readonly class FlattenConfig extends BaseConfig
{
/**
* @param list<string>|true $alwaysArray
*/
public function __construct(
array | true $alwaysArray = [],
bool $autoCast = false,
private ?string $flattenNodes = null,
private ?string $flattenAttributes = null,
private bool $withoutRoot = false,
) {
parent::__construct($alwaysArray, $autoCast);
}
public function isFlatten(): bool
{
return true;
}
public function isFullResponse(): bool
{
return false;
}
public function getFlattenNodes(): string
{
return $this->flattenNodes ?? parent::getFlattenNodes();
}
public function getFlattenAttributes(): string
{
return $this->flattenAttributes ?? parent::getFlattenAttributes();
}
public function isWithoutRoot(): bool
{
return $this->withoutRoot;
}
}