Reported by psalm upon pushing

Signed-off-by: Christian Wolf <github@christianwolf.email>
This commit is contained in:
Christian Wolf 2024-06-26 11:43:56 +02:00
Родитель 6570d34902
Коммит fc29da7eea
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: A2F36500733228B5
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -71,7 +71,7 @@ class JsonService {
* @return bool true, if the schema matches that of a schema.org object
*/
public function isSchemaContext(string $context): bool {
return preg_match('@^https?://schema\.org/?$@', $context);
return preg_match('@^https?://schema\.org/?$@', $context) == 1;
}
/**