Google\Spreadsheet\CellFeed::getXml PHP Method

getXml() public method

Get the raw XML
public getXml ( ) : integer
return integer
    public function getXml()
    {
        return $this->xml;
    }

Usage Example

 public function testGetXml()
 {
     $feed = new CellFeed($this->getSimpleXMLElement("cell-feed"));
     $this->assertTrue($feed->getXml() instanceof \SimpleXMLElement);
 }