Ejemplo n.º 1
0
 /**
  * Retrieve multiple items from the cache by key.
  * 
  * Items not found in the cache will have a null value.
  *
  * @param array $keys
  * @return array 
  * @static 
  */
 public static function many($keys)
 {
     return \Illuminate\Cache\Repository::many($keys);
 }