. * * PHP version 5.1.6+ * * @category Security * @package PHPIDS * @author Mario Heiderich * @author Christian Matthies * @author Lars Strojny * @license http://www.gnu.org/licenses/lgpl.html LGPL * @link http://php-ids.org/ */ /** * Interface for logging wrappers * * @category Security * @package PHPIDS * @author Christian Matthies * @author Mario Heiderich * @author Lars Strojny * @copyright 2007 The PHPIDS Group * @version Release: $Id:Interface.php 517 2007-09-15 15:04:13Z mario $ * @license http://www.gnu.org/licenses/lgpl.html LGPL * @link http://php-ids.org/ */ interface IDS_Log_Interface { /** * Interface method * * @param IDS_Report $data the report data * * @return void */ public function execute(IDS_Report $data); } /** * Local variables: * tab-width: 4 * c-basic-offset: 4 * End: * vim600: sw=4 ts=4 expandtab */