fetch() public method

Retrieves the objects for the given UIDs.
public fetch ( array $uids ) : array
$uids array The message UIDs.
return array An array of objects.
Example #1
0
File: Log.php Project: horde/horde
 /**
  * Retrieves the objects for the given UIDs.
  *
  * @param array $uids The message UIDs.
  *
  * @return array An array of objects.
  */
 public function fetch($uids)
 {
     $this->_logger->debug(sprintf('Fetching data objects %s in %s.', join(',', $uids), $this->_data->getPath()));
     return $this->_data->fetch($uids);
 }