. * */ namespace Friendica\Test\src\Content; use Friendica\Content\PageInfo; /** * Class PageInfoMock * * Exposes protected methods for test in the inherited class * * @method static string|null getRelevantUrlFromBody(string $body, $searchNakedUrls = false) * @method static string stripTrailingUrlFromBody(string $body, string $url) */ class PageInfoMock extends PageInfo { public static function __callStatic($name, $arguments) { return self::$name(...$arguments); } }