25 lines
445 B
PHP
25 lines
445 B
PHP
|
<?php
|
||
|
/**
|
||
|
* ActivityPub GatherPress Event Transformer
|
||
|
*
|
||
|
* @package activity-event-transformers
|
||
|
* @license AGPL-3.0-or-later
|
||
|
*/
|
||
|
|
||
|
if ( ! defined( 'ABSPATH' ) ) {
|
||
|
exit; // Exit if accessed directly.
|
||
|
}
|
||
|
|
||
|
use Activitypub\Transformer\Post;
|
||
|
use Activitypub\Activity\Extended_Object\Event;
|
||
|
use Activitypub\Activity\Extended_Object\Place;
|
||
|
|
||
|
/**
|
||
|
* ActivityPub GatherPress Event Transformer
|
||
|
*
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
class Gatherpress extends Post {
|
||
|
|
||
|
}
|