Skip to content

Commit

Permalink
Fix casing
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Aug 4, 2023
1 parent 28713e1 commit df667df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/SAML2/XML/samlp/AuthnRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function __construct(
protected ?int $assertionConsumerServiceIndex = null,
protected ?string $protocolBinding = null,
protected ?int $attributeConsumingServiceIndex = null,
protected ?string $ProviderName = null,
protected ?string $providerName = null,
?Issuer $issuer = null,
?string $id = null,
string $version = '2.0',
Expand All @@ -76,7 +76,7 @@ public function __construct(
?Extensions $extensions = null,
protected ?Scoping $scoping = null,
) {
Assert::nullOrNotWhitespaceOnly($ProviderName);
Assert::nullOrNotWhitespaceOnly($providerName);
Assert::oneOf(
null,
[$assertionConsumerServiceURL, $assertionConsumerServiceIndex],
Expand Down Expand Up @@ -157,7 +157,7 @@ public function getForceAuthn(): ?bool
*/
public function getProviderName(): ?string
{
return $this->ProviderName;
return $this->providerName;
}


Expand Down

0 comments on commit df667df

Please sign in to comment.