php-mpos/include/classes/ipushnotification.interface.php
2017-01-12 16:32:30 +01:00

6 lines
172 B
PHP

<?php
interface IPushNotification {
public static function getName();
public static function getParameters();
public function notify($message, $severity, $event);
}