. * */ namespace Friendica\Test\src\Protocol\ActivityPub; use Friendica\Protocol\ActivityPub\Processor; /** * Class ProcessorMock * * Exposes protected methods for test in the inherited class * * @method static string addMentionLinks(string $body, array $tags) * @method static string normalizeMentionLinks(string $body) */ class ProcessorMock extends Processor { public static function __callStatic($name, $arguments) { return self::$name(...$arguments); } }