Changeset 29
- Timestamp:
- 08/30/06 16:34:55 (2 years ago)
- Files:
-
- trunk/XJConf/converters/AbstractObjectValueConverter.php (modified) (1 diff)
- trunk/XJConf/definitions/AttributeDefinition.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/XJConf/converters/AbstractObjectValueConverter.php
r26 r29 40 40 // attribute has not been set and there is no 41 41 // default value, skip the method call 42 if (null == $val) {42 if (null === $val) { 43 43 continue; 44 44 } trunk/XJConf/definitions/AttributeDefinition.php
r21 r29 128 128 } 129 129 130 if (null == $value) {130 if (null === $value) { 131 131 if ($this->isRequired() == true) { 132 132 throw new MissingAttributeException('The attribute "' . $this->getName() . '" is required for the tag "' . $tag->getName() . '".');
