Example #1
0
 /**
  * Prepend Item to current container
  *
  * @param Item $item
  *
  * @return $this
  */
 public function prependItem(Item $item)
 {
     $item->setParentContainer($this);
     array_unshift($this->_items, $item);
     return $this;
 }