From ef273057aa4f4cc29ae748f9379d873f6831cca2 Mon Sep 17 00:00:00 2001 From: Git'Fellow <12234510+solracsf@users.noreply.github.com> Date: Thu, 21 Nov 2024 14:20:37 +0100 Subject: [PATCH] fix: typo --- lib/Command/GetMetadata.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Command/GetMetadata.php b/lib/Command/GetMetadata.php index 0d79168d..5ae2a993 100644 --- a/lib/Command/GetMetadata.php +++ b/lib/Command/GetMetadata.php @@ -46,7 +46,7 @@ protected function configure(): void { protected function execute(InputInterface $input, OutputInterface $output): int { $idp = (int)$input->getArgument('idp'); - $settings = new Settings($this->SAMLSettings->getOneLoginSettingsArray($idp)); + $settings = new Settings($this->samlSettings->getOneLoginSettingsArray($idp)); $metadata = $settings->getSPMetadata(); $errors = $this->callWithXmlEntityLoader(function () use ($settings, $metadata) { return $settings->validateMetadata($metadata);