Example #1
0
 /**
  * Appends the specified element to the end of this collection.
  *
  * @param  mixed
  * @return void
  * @throws InvalidArgumentException
  */
 public function append($item)
 {
     $this->beforeAttach($item);
     return parent::append($item);
 }