Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Must be implemented by PHP banner mixins. |
| 5 | */ |
| 6 | interface IBannerMixin { |
| 7 | /** |
| 8 | * Initialize the module. At the moment, the only action which would |
| 9 | * be taken through the controller is to declare magic words. |
| 10 | */ |
| 11 | public function register( MixinController $controller ); |
| 12 | } |