HTTPWatch::getEntries PHP Method

getEntries() public method

public getEntries ( )
    function getEntries()
    {
        if ($this->entries) {
            return $this->entries;
        }
        $this->entries = array();
        $plug =& $this->watch;
        $entlog = $plug->Log->Entries;
        $this->entries = $this->populate($entlog, 'Entry', true);
        return $this->entries;
    }