batch() public method

important note: Because this method loads beans using the load() function (but faster) it will return empty beans with ID 0 for every bean that could not be located. The resulting beans will have the passed IDs as their keys.
public batch ( string $type, array $ids ) : array
$type string type of beans
$ids array ids to load
return array
示例#1
0
 /**
  * Returns an array of beans. Pass a type and a series of ids and
  * this method will bring you the corresponding beans.
  *
  * important note: Because this method loads beans using the load()
  * function (but faster) it will return empty beans with ID 0 for
  * every bean that could not be located. The resulting beans will have the
  * passed IDs as their keys.
  *
  * @param string $type type of beans
  * @param array  $ids  ids to load
  *
  * @return array
  */
 public function batch($type, $ids)
 {
     return $this->repository->batch($type, $ids);
 }