コード例 #1
0
ファイル: Collection.php プロジェクト: schpill/standalone
 /**
  * Fetch a nested element of the collection.
  *
  * @param  string  $key
  * @return Collection
  */
 public function fetch($key)
 {
     return new self(Arrays::fetch($this->_items, $key));
 }