Gc\Document\Collection::getChildren PHP Method

getChildren() public method

(non-PHPdoc)
See also: include Gc\Component\IterableInterface#getChildren()
public getChildren ( ) : array
return array
    public function getChildren()
    {
        return $this->getDocuments();
    }

Usage Example

Example #1
0
 /**
  * Test
  *
  * @return void
  */
 public function testGetChildren()
 {
     $this->object->load(0);
     $this->assertInternalType('array', $this->object->getChildren());
 }
All Usage Examples Of Gc\Document\Collection::getChildren