AgeRange::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( $ageRangeType = null, $id = null, $type = null, $CriterionType = null )
        public function __construct($ageRangeType = null, $id = null, $type = null, $CriterionType = null)
        {
            parent::__construct();
            $this->ageRangeType = $ageRangeType;
            $this->id = $id;
            $this->type = $type;
            $this->CriterionType = $CriterionType;
        }

Usage Example

예제 #1
0
 public function __construct($name)
 {
     parent::__construct($name);
 }