summaryrefslogtreecommitdiffstats
path: root/library/SSRS/Object/ItemDefinition.php
blob: f63d57e0f24df0fb8c4477fc39d0ed06db3ad8fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

/**
 * Description of ExecutionParameters
 *
 * @author andrew
 */
class SSRS_Object_ItemDefinition extends SSRS_Object_Abstract {

    public function getXMLString() {
        return $this->Definition;
    }

    public function getSimpleXML() {
        return new SimpleXMLElement($this->getXMLString());
    }

    public function __toString() {
        return $this->getXMLString();
    }

}