コード例 #1
0
ファイル: Collection.php プロジェクト: hexing-w/wechat
 /**
  * Remove item form Collection.
  *
  * @param string $key
  */
 public function forget($key)
 {
     return Arr::forget($this->data, $key);
 }
コード例 #2
0
ファイル: Collection.php プロジェクト: zerozh/wechat
 /**
  * Remove item form Collection.
  *
  * @param string $key
  */
 public function forget($key)
 {
     Arr::forget($this->items, $key);
 }