rule_types[ $rule_type ] ) ) { throw new Exception( __( 'Wrong rule type', 'advanced-dynamic-pricing-for-woocommerce' ) ); } $rule_class = $this->rule_types[ $rule_type ]; return new $rule_class( $args ); } private function __construct() { $this->rule_types = array( 'package' => 'WDP_Rule', ); } }