NullStatsPage::__construct PHP Method

__construct() public method

public __construct ( $totalNumEntries = null, $PageType = null )
        public function __construct($totalNumEntries = null, $PageType = null)
        {
            parent::__construct();
            $this->totalNumEntries = $totalNumEntries;
            $this->PageType = $PageType;
        }

Usage Example

 public function __construct($entries = NULL, $totalNumEntries = NULL, $PageType = NULL)
 {
     parent::__construct();
     $this->entries = $entries;
     $this->totalNumEntries = $totalNumEntries;
     $this->PageType = $PageType;
 }
All Usage Examples Of NullStatsPage::__construct