Bristol SU Support Package
FilterManager.php
Go to the documentation of this file.
1 <?php
2 
4 
5 use Exception;
6 
10 interface FilterManager
11 {
12 
20  public function register($alias, $class);
21 
29  public function getAll();
30 
39  public function getClassFromAlias($alias);
40 }