Components_Helper_DocsOrigin::getDocuments PHP Method

getDocuments() public method

Return the list of documents that will be fetched.
public getDocuments ( ) : array
return array The list of remote documents.
    public function getDocuments()
    {
        return $this->_parse();
    }

Usage Example

Ejemplo n.º 1
0
 public function testMultiple()
 {
     $this->markTestIncomplete();
     $do = __DIR__ . '/../../../fixture/docsorigin/multiple';
     $docs_origin = new Components_Helper_DocsOrigin($do, $this->_getClient());
     $this->assertEquals(array('doc/ONE' => 'http://example.com/ONE', 'doc/TEST' => 'http://example.com/TEST', 'doc/THREE' => 'http://example.com/THREE', 'doc/TWO' => 'http://example.com/TWO'), $docs_origin->getDocuments());
 }
All Usage Examples Of Components_Helper_DocsOrigin::getDocuments