This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/SamlService.php b/src/SamlService.php | |
index 1f22efb..98e8c03 100644 | |
--- a/src/SamlService.php | |
+++ b/src/SamlService.php | |
@@ -129,6 +129,8 @@ class SamlService { | |
public function getMetadata() { | |
$settings = $this->getSamlAuth()->getSettings(); | |
$metadata = $settings->getSPMetadata(); | |
+ dump($metadata); | |
+ dump(simplexml_load_string($metadata)); | |
$errors = $settings->validateMetadata($metadata); | |
if (empty($errors)) { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment