12 lines
244 B
PHP
12 lines
244 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Interface for ZAP mode handlers.
|
||
|
|
* All ZAP handler classes must implement this interface.
|
||
|
|
*/
|
||
|
|
interface ZAPHandler {
|
||
|
|
/**
|
||
|
|
* Renders and returns the content for this mode.
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
public function getContent();
|
||
|
|
}
|