1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- class ODDRelationship extends ODD {
-
- function __construct($uuid1, $type, $uuid2) {
- parent::__construct();
- $this->setAttribute('uuid1', $uuid1);
- $this->setAttribute('type', $type);
- $this->setAttribute('uuid2', $uuid2);
- }
-
- protected function getTagName() {
- return "relationship";
- }
- }
|