Merge 'main' into eventprime
All checks were successful
PHP Code Checker / PHP Code Checker (pull_request) Successful in 58s
PHPUnit / PHPUnit – PHP 7.4 (pull_request) Successful in 1m8s
PHPUnit / PHPUnit – PHP 8.0 (pull_request) Successful in 1m3s
PHPUnit / PHPUnit – PHP 8.1 (pull_request) Successful in 1m3s
PHPUnit / PHPUnit – PHP 8.2 (pull_request) Successful in 1m2s
PHPUnit / PHPUnit – PHP 8.3 (pull_request) Successful in 1m3s

This commit is contained in:
André Menrath 2024-11-28 19:01:03 +01:00
commit 15f61e4e9c
3 changed files with 9 additions and 1 deletions

View file

@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Integration for EventPrime Events Calendar, Bookings and Tickets
### Fixed
* Fixed that transformer hook function might also return `null`.
## [0.2.1] - 2024-11-16
### Added

View file

@ -107,6 +107,10 @@ We're always interested in your feedback. Feel free to reach out to us via [E-Ma
* Integration for EventPrime Events Calendar, Bookings and Tickets
### Fixed
* Fixed that transformer hook function might also return `null`.
### [0.2.1] 2024-11-16 ###
* Initial release on https://wordpress.org/

View file

@ -253,7 +253,7 @@ class Setup {
*
* @return \Activitypub\Transformer\Base|null
*/
public function register_activitypub_event_transformer( $transformer, $wp_object, $object_class ): \Activitypub\Transformer\Base {
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;