Esempio n. 1
0
 /**
  * Pop the last page off of the PageArray and return it. 
  *
  * @return Page|NULL 
  * 
  */
 public function pop()
 {
     if ($this->numTotal) {
         $this->numTotal--;
     }
     return parent::pop();
 }