I'm using this library on separated projects and it was causing this error:
PHP Fatal error: Cannot declare class PW_CMB2_Field_Select2, because the name is already in use in ...
This pull request fixes that
I've just added this code
if ( ! class_exists( 'PW_CMB2_Field_Select2' ) ) {
}
I'm using this library on separated projects and it was causing this error: PHP Fatal error: Cannot declare class PW_CMB2_Field_Select2, because the name is already in use in ...
This pull request fixes that
I've just added this code