Skip to content

Commit 4cdecf9

Browse files
committed
Revert readonly properties
1 parent 1156c1f commit 4cdecf9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/XML/TypedTextContentTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ trait TypedTextContentTrait
2727
* @param \SimpleSAML\XMLSchema\Type\Interface\ValueTypeInterface $content
2828
*/
2929
public function __construct(
30-
protected readonly ValueTypeInterface $content,
30+
protected ValueTypeInterface $content,
3131
) {
3232
}
3333

src/XML/XML/Trait/SpecialAttrsTrait.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,28 +23,28 @@ trait SpecialAttrsTrait
2323
*
2424
* @var \SimpleSAML\XML\Type\BaseValue|null
2525
*/
26-
protected readonly ?BaseValue $base;
26+
protected ?BaseValue $base;
2727

2828
/**
2929
* The id.
3030
*
3131
* @var \SimpleSAML\XML\Type\IDValue|null
3232
*/
33-
protected readonly ?IDValue $id;
33+
protected ?IDValue $id;
3434

3535
/**
3636
* The lang.
3737
*
3838
* @var \SimpleSAML\XML\Type\LangValue|null
3939
*/
40-
protected readonly ?LangValue $lang;
40+
protected ?LangValue $lang;
4141

4242
/**
4343
* The space.
4444
*
4545
* @var \SimpleSAML\XML\Type\SpaceValue|null
4646
*/
47-
protected readonly ?SpaceValue $space;
47+
protected ?SpaceValue $space;
4848

4949

5050
/**

0 commit comments

Comments
 (0)