public function checkIdenticalSyndication($like) {
return $this->database->query("SELECT count(url) as count FROM {webmention_syndication} WHERE url LIKE :match_url", [':match_url' => '%/' . Database::getConnection()->escapeLike($like)])->fetchField();
}
For cross db support this needs to use a query builder.
I'm reading through https://www.drupal.org/project/drupal/issues/2786811 and discovered that one of the indieweb module is affected.
For cross db support this needs to use a query builder.