Exemplo n.º 1
0
 /**
  * @see Facade::batch
  *
  * Alias for batch(). Batch method is older but since we added so-called *All
  * methods like storeAll, trashAll, dispenseAll and findAll it seemed logical to
  * improve the consistency of the Facade API and also add an alias for batch() called
  * loadAll.
  *
  * @param string $type type of beans
  * @param array  $ids  ids to load
  *
  * @return array
  */
 public static function loadAll($type, $ids)
 {
     return self::$redbean->batch($type, $ids);
 }