DateRange::__construct PHP Method

__construct() public method

public __construct ( $min = null, $max = null )
        public function __construct($min = null, $max = null)
        {
            $this->min = $min;
            $this->max = $max;
        }

Usage Example

示例#1
0
 public function __construct()
 {
     parent::__construct(Date::Now(), Date::Now());
 }