]> git.wh0rd.org - tt-rss.git/blob - plugins/af_comics/filter_base.php
Updated cache_images() to use _MIN_CACHE_IMAGE_SIZE constant when checking file size...
[tt-rss.git] / plugins / af_comics / filter_base.php
1 <?php
2 abstract class Af_ComicFilter {
3 public abstract function supported();
4 public abstract function process(&$article);
5 }
6 ?>