. * * @file * @ingroup extensions */ namespace Popups\EventLogging; interface EventLogger { /** * Page Previews Event logging schema name * @var string */ const PREVIEWS_SCHEMA_NAME = 'Popups'; /** * Log event * * @param array $event An associative array containing event data */ public function log( array $event ); }