Skip to content
Snippets Groups Projects
Commit 4a426c21 authored by Tyler Antonio's avatar Tyler Antonio
Browse files

Forgot to include the pdo option to the MetaDataStorageSource

parent 4cf79b3a
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,8 @@ abstract class SimpleSAML_Metadata_MetaDataStorageSource {
return new SimpleSAML_Metadata_MetaDataStorageHandlerSerialize($sourceConfig);
case 'mdx':
return new SimpleSAML_Metadata_MetaDataStorageHandlerMDX($sourceConfig);
case 'pdo':
return new SimpleSAML_Metadata_MetaDataStorageHandlerPdo($sourceConfig);
default:
throw new Exception('Invalid metadata source type: "' . $type . '".');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment