Constants_Provider::get( $key )
Source
File: src/Common/Configuration/Constants_Provider.php
public function get( $key ) {
if ( $this->has( $key ) ) {
return constant( $key );
}
return null;
}
File: src/Common/Configuration/Constants_Provider.php
public function get( $key ) {
if ( $this->has( $key ) ) {
return constant( $key );
}
return null;
}