"https://www.w3.org/ns/activitystreams", "type" => "Create", "actor" => [ "type" => "Person", "id" => $user->toUrl()->setAbsolute()->toString(), ], "object" => $entity->toUrl()->setAbsolute()->toString(), ]); } /** * {@inheritdoc} */ public function generateUpdateEvent(EntityInterface $entity, UserInterface $user) { return json_encode([ "@context" => "https://www.w3.org/ns/activitystreams", "type" => "Update", "actor" => [ "type" => "Person", "id" => $user->toUrl()->setAbsolute()->toString(), ], "object" => $entity->toUrl()->setAbsolute()->toString(), ]); } /** * {@inheritdoc} */ public function generateDeleteEvent(EntityInterface $entity, UserInterface $user) { return json_encode([ "@context" => "https://www.w3.org/ns/activitystreams", "type" => "Delete", "actor" => [ "type" => "Person", "id" => $user->toUrl()->setAbsolute()->toString(), ], "object" => $entity->toUrl()->setAbsolute()->toString(), ]); } }