getDocumentPath() публичный Метод

public getDocumentPath ( ) : string
Результат string The path to the XML document. It must be in namespace format.
Пример #1
0
 public function testSetDocumentPathAsNamespace()
 {
     if (Prado::getPathOfAlias('UnitTest') === null) {
         Prado::setPathOfAlias('UnitTest', dirname(__FILE__) . '/data');
     }
     $expected = $this->documentPath;
     $transform = new TXmlTransform();
     $transform->setDocumentPath('UnitTest.hello');
     $this->assertEquals($expected, $transform->getDocumentPath());
 }