Skip to content

Commit 0aed294

Browse files
tvdijenthijskh
authored andcommitted
Move procfilter and fix some syntax errors
1 parent 836b25b commit 0aed294

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace SimpleSAML\Module\stepup-sfo;
5+
namespace SimpleSAML\Module\stepupsfo;
66

77
use Exception;
88
use SAML2\AuthnRequest;
@@ -118,7 +118,7 @@ public function getIdPMetadata(string $entityId): Configuration
118118
throw new Error\Exception(sprintf(
119119
'Could not find the metadata of an IdP with entity ID %s',
120120
var_export($entityId, true)
121-
);
121+
));
122122
}
123123

124124

src/Controller/SFO.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class SFO
4242
* @throws \Exception
4343
*/
4444
public function __construct(
45-
Configuration $config,
45+
Configuration $config
4646
) {
4747
$this->config = $config;
4848
}
@@ -76,7 +76,7 @@ public function acs(): Template
7676
'SFO - received response; Issuer = %s, InResponseTo = %s',
7777
var_export($issuer, true),
7878
var_export($inResponseTo, true)
79-
);
79+
));
8080
Logger::debug('SFO - received response; RelayState = ' . $relaystate);
8181

8282
$prestate = Auth\State::loadState($relaystate, 'stepupsfo:pre');
@@ -99,7 +99,7 @@ public function acs(): Template
9999
throw new Error\Exception(sprintf(
100100
'Could not find the metadata of SFO IdP with entity ID %s',
101101
var_export($entityId, true)
102-
);
102+
));
103103
}
104104

105105
// Validate the received response

0 commit comments

Comments
 (0)