AgeRange::__construct PHP Méthode

__construct() public méthode

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

 public function __construct($name)
 {
     parent::__construct($name);
 }