Compare commits

...

2 commits

Author SHA1 Message Date
15f61e4e9c 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
2024-11-28 19:01:03 +01:00
dddd3e395f Fix: hook for ActivityPub transformer might also return null (#81)
All checks were successful
PHP Code Checker / PHP Code Checker (push) Successful in 51s
PHPUnit / PHPUnit – PHP 7.4 (push) Successful in 1m1s
PHPUnit / PHPUnit – PHP 8.0 (push) Successful in 59s
PHPUnit / PHPUnit – PHP 8.1 (push) Successful in 58s
PHPUnit / PHPUnit – PHP 8.2 (push) Successful in 1m0s
PHPUnit / PHPUnit – PHP 8.3 (push) Successful in 1m1s
Reviewed-on: #81
Co-authored-by: André Menrath <andre.menrath@posteo.de>
Co-committed-by: André Menrath <andre.menrath@posteo.de>
2024-11-24 10:19:46 +01:00
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;