Tribe__Events__Default_Values::__call( $method, $args )
Source
File: src/Tribe/Default_Values.php
public function __call( $method, $args ) {
if ( method_exists( $this, strtolower( $method ) ) ) {
return call_user_func_array( array( $this, strtolower( $method ) ), $args );
}
return '';
}