Setting::__construct PHP Méthode

__construct() public méthode

public __construct ( $SettingType = null )
        public function __construct($SettingType = null)
        {
            $this->SettingType = $SettingType;
        }

Usage Example

 public function __construct($positiveGeoTargetType = null, $negativeGeoTargetType = null, $SettingType = null)
 {
     parent::__construct();
     $this->positiveGeoTargetType = $positiveGeoTargetType;
     $this->negativeGeoTargetType = $negativeGeoTargetType;
     $this->SettingType = $SettingType;
 }
All Usage Examples Of Setting::__construct