Skip to content

Commit 3f5fccb

Browse files
committed
Fix CI
1 parent 75b8b5e commit 3f5fccb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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 = null;
26+
protected readonly ?BaseValue $base;
2727

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

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

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

4949

5050
/**

0 commit comments

Comments
 (0)