Skip to content
Snippets Groups Projects
Commit 21b6a339 authored by Olav Morken's avatar Olav Morken
Browse files

md:EntitiesDescriptor: Add sanitycheck for Name-attribute.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3199 44740490-163a-0410-bde0-09ae8108e29a
parent 82aa4e05
No related branches found
No related tags found
Loading
......@@ -104,6 +104,7 @@ class SAML2_XML_md_EntitiesDescriptor extends SAML2_SignedElementHelper {
assert('is_null($this->ID) || is_string($this->ID)');
assert('is_null($this->validUntil) || is_int($this->validUntil)');
assert('is_null($this->cacheDuration) || is_string($this->cacheDuration)');
assert('is_null($this->Name) || is_string($this->Name)');
assert('is_array($this->Extensions)');
assert('is_array($this->children)');
......
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