aboutsummaryrefslogtreecommitdiff
path: root/app/Models/TagDAOSQLite.php
blob: efa52807ab450d6389773f6a71286adc72e9a0fb (plain)
1
2
3
4
5
6
7
8
9
10
<?php
declare(strict_types=1);

class FreshRSS_TagDAOSQLite extends FreshRSS_TagDAO {

	public function sqlIgnore(): string {
		return 'OR IGNORE';
	}

}