Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/MetaLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public function loadSource(array $source): void
/**
* @param \SimpleSAML\Metadata\SAMLParser $entity
* @param array $source
* @bool
* @return bool
*/
private function processCertificates(Metadata\SAMLParser $entity, array $source): bool
{
Expand All @@ -234,7 +234,7 @@ private function processCertificates(Metadata\SAMLParser $entity, array $source)
/**
* @param \SimpleSAML\Metadata\SAMLParser $entity
* @param array $source
* @bool
* @return bool
*/
private function processBlacklist(Metadata\SAMLParser $entity, array $source): bool
{
Expand All @@ -251,7 +251,7 @@ private function processBlacklist(Metadata\SAMLParser $entity, array $source): b
/**
* @param \SimpleSAML\Metadata\SAMLParser $entity
* @param array $source
* @bool
* @return bool
*/
private function processWhitelist(Metadata\SAMLParser $entity, array $source): bool
{
Expand All @@ -268,7 +268,7 @@ private function processWhitelist(Metadata\SAMLParser $entity, array $source): b
/**
* @param \SimpleSAML\Metadata\SAMLParser $entity
* @param array $source
* @bool
* @return bool
*/
private function processAttributeWhitelist(Metadata\SAMLParser $entity, array $source): bool
{
Expand Down
2 changes: 1 addition & 1 deletion src/MetaRefresh.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function runRefresh(string $crontag = null): void
throw new Exception("Invalid outputDir specified.");
}

$outputFormat = $set->getValueValidate('outputFormat', ['flatfile', 'serialize', 'pdo'], 'flatfile');
Comment thread
rcnsheppardp marked this conversation as resolved.
$outputFormat = $set->getOptionalValueValidate('outputFormat', ['flatfile', 'serialize', 'pdo'], 'flatfile');

$oldMetadataSrc = MetaDataStorageSource::getSource([
'type' => $outputFormat,
Expand Down
Loading