Exemplo n.º 1
0
 /**
  * Pulls an item from the collection.
  *
  * @param  mixed $key
  * @param  mixed $default
  *
  * @return mixed
  */
 public function pull($key, $default = NULL)
 {
     return Lib::array_pull($key, $this->items, $default);
 }