succeed; } public function getStatusCode() { return $this->statusCode; } protected function loadXmlContent($content) { $xmlReader = new \XMLReader(); $isXml = $xmlReader->XML($content); if ($isXml === FALSE) { throw new MnsException($this->statusCode, $content); } try { while ($xmlReader->read()) {} } catch (\Exception $e) { throw new MnsException($this->statusCode, $content); } $xmlReader->XML($content); return $xmlReader; } } ?>