/** * Prepend a Page to the beginning of the PageArray. * * @param Page $item * @return WireArray This instance. * */ public function prepend($item) { parent::prepend($item); $this->numTotal++; return $this; }