Add support back to PHP 7.4+ #71

Merged
linos merged 6 commits from php74 into main 2024-10-31 16:40:26 +01:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit b1f41cc124 - Show all commits

View file

@ -121,9 +121,9 @@ final class The_Events_Calendar extends Event {
/**
* Get the event location.
*
* @return Place|array The place/venue if one is set.
* @return ?Place The place/venue if one is set.
*/
public function get_location(): Place|null {
public function get_location(): ?Place {
// Get short handle for the venues.
$venues = $this->tribe_event->venues;

View file

@ -252,7 +252,7 @@ class Setup {
*
* @return \Activitypub\Transformer\Base|null
*/
public function register_activitypub_event_transformer( $transformer, $wp_object, $object_class ): \Activitypub\Transformer\Base|null {
public function register_activitypub_event_transformer( $transformer, $wp_object, $object_class ): \Activitypub\Transformer\Base {
// If the current WordPress object is not a post (e.g., a WP_Comment), don't change the transformer.
if ( 'WP_Post' !== $object_class ) {
return $transformer;