. * */ namespace Friendica\Worker; use Friendica\Protocol\Delivery as ProtocolDelivery; class Delivery { public static function execute(string $cmd, int $post_uriid, int $contact_id, int $sender_uid = 0) { ProtocolDelivery::deliver($cmd, $post_uriid, $contact_id, $sender_uid); } }