TagDAOSQLite.php 154 B

12345678910
  1. <?php
  2. declare(strict_types=1);
  3. class FreshRSS_TagDAOSQLite extends FreshRSS_TagDAO {
  4. public function sqlIgnore(): string {
  5. return 'OR IGNORE';
  6. }
  7. }