ihandler.php 107 B

123456
  1. <?php
  2. interface IHandler {
  3. function csrf_ignore($method);
  4. function before($method);
  5. function after();
  6. }