]> git.wh0rd.org - tt-rss.git/blob - classes/ihandler.php
lib: Upgrade timezones.txt from 2010k/l/m/n/2011a to 2016j
[tt-rss.git] / classes / ihandler.php
1 <?php
2 interface IHandler {
3 function csrf_ignore($method);
4 function before($method);
5 function after();
6 }
7 ?>