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
ファイル: DateRange.php プロジェクト: Trideon/gigolo
 public function __construct()
 {
     parent::__construct(Date::Now(), Date::Now());
 }