FreshRSS/app/Models/TagDAOSQLite.php

12 lines
168 B
PHP

<?php
declare(strict_types=1);
class FreshRSS_TagDAOSQLite extends FreshRSS_TagDAO {
#[\Override]
public function sqlIgnore(): string {
return 'OR IGNORE';
}
}