Changeset 209
- Timestamp:
- 02/05/07 19:13:43 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/xml/serializer/stubXMLSerializer.php
r155 r209 20 20 class stubXMLSerializer extends stubBaseObject { 21 21 22 /** 23 * Option to define the root tag of the serialized document 24 */ 22 25 const OPT_ROOT_TAG = 1; 23 26 … … 152 155 continue; 153 156 } 154 if ($method->isConstructor()) { 157 if ($method->isConstructor() || $method->isDestructor()) { 158 continue; 159 } 160 if (0 == strncmp($method->getName(), '__', 2)) { 155 161 continue; 156 162 } trunk/src/test/php/net/stubbles/xml/stubXMLSerializerTestCase.php
r129 r209 64 64 */ 65 65 class XMLSerializerMethods { 66 67 public function __construct() {} 68 public function __destruct() {} 69 public function __get($prop) {} 66 70 67 71 /**
