Exemple #1
0
 /**
  * Merges the collection with another collection.
  *
  * @param CollectionInterface $in
  *
  * @return CollectionInterface
  */
 public function merge(CollectionInterface $in) : CollectionInterface
 {
     return new static(array_merge($this->items, $in->all()));
 }