Skip to content

Commit ccbcbd4

Browse files
committed
Allow string and array notations for a route
This is required for Gateway metadata generation to work There the provider routes need parameters to be able to load. And loading the uri in the DI extension is not possible.
1 parent 198c9a7 commit ccbcbd4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/Metadata/MetadataConfiguration.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020

2121
class MetadataConfiguration
2222
{
23-
public string $entityIdRoute = '';
23+
public string|array $entityIdRoute = '';
2424

2525
public bool $isSp = false;
2626

27-
public string $assertionConsumerRoute = '';
27+
public string|array $assertionConsumerRoute = '';
2828

2929
public bool $isIdP = false;
3030

31-
public string $ssoRoute = '';
31+
public string|array $ssoRoute = '';
3232

3333
public ?string $spCertificate = null;
3434

0 commit comments

Comments
 (0)