]> git.wh0rd.org Git - tt-rss.git/blob - classes/ihandler.php
fix previous to not crash if document first child is not a DOMElement or whatever
[tt-rss.git] / classes / ihandler.php
1 <?php
2 interface IHandler {
3         function csrf_ignore($method);
4         function before($method);
5         function after();
6 }