Owl\Repositories\Eloquent\ItemFtsRepository::toNgram PHP Method

toNgram() public method

Convert String into N-Gramed string.
public toNgram ( string $title, text $body ) : string
$title string
$body text
return string
    public function toNgram($title, $body)
    {
        return FtsUtils::toNgram($title . "\n\n" . $body);
    }