/** * Set The number of records per page * * @param integer $howMany * @return void * @access public */ public static function setRecordsPerPage($howMany) { if (SensitiveIO::isPositiveInteger($howMany)) { self::$_recordsPerPage = $howMany; } else { $this->raiseError("Not a positive value"); } }