fix function calls that are static
Some checks failed
PHPUnit / PHPUnit – PHP (push) Failing after 56s
Some checks failed
PHPUnit / PHPUnit – PHP (push) Failing after 56s
This commit is contained in:
parent
da9e71008d
commit
98dc3c3839
1 changed files with 2 additions and 2 deletions
|
@ -234,9 +234,9 @@ class Setup {
|
||||||
// Get the transformer for a specific event plugins event-post type.
|
// Get the transformer for a specific event plugins event-post type.
|
||||||
foreach ( $this->active_event_plugins as $event_plugin ) {
|
foreach ( $this->active_event_plugins as $event_plugin ) {
|
||||||
if ( $wp_object->post_type === $event_plugin->get_post_type() ) {
|
if ( $wp_object->post_type === $event_plugin->get_post_type() ) {
|
||||||
$transformer_class = $event_plugin->get_activitypub_event_transformer_class();
|
$transformer_class = $event_plugin::get_activitypub_event_transformer_class();
|
||||||
if ( class_exists( $transformer_class ) ) {
|
if ( class_exists( $transformer_class ) ) {
|
||||||
return new $transformer_class( $wp_object, $event_plugin->get_event_category_taxonomy() );
|
return new $transformer_class( $wp_object, $event_plugin::get_event_category_taxonomy() );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue