X-Git-Url: https://git.cweiske.de/phinde.git/blobdiff_plain/9b55ca34845488c4436382844b3d1a23dbf9293c..f98e891b454e5677bdf61f476e366b01af713b50:/src/phinde/Helper.php diff --git a/src/phinde/Helper.php b/src/phinde/Helper.php index 00215fe..aeb8ba5 100644 --- a/src/phinde/Helper.php +++ b/src/phinde/Helper.php @@ -77,5 +77,14 @@ class Helper $diff = microtime(true) - static::$timer[$timer]; echo '+timer: ' . number_format($diff, 3) . 'ms ' . $timer . "\n"; } + + public static function baseDoc($url) + { + $esDoc = new \stdClass(); + $esDoc->status = new \stdClass(); + $esDoc->url = $url; + $esDoc->schemalessUrl = Helper::noSchema($url); + return $esDoc; + } } ?>