MPOS/php-mpos

View on GitHub
include/classes/ipushnotification.interface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
    interface IPushNotification {
        public static function getName();
        public static function getParameters();
        public function notify($message, $severity, $event);
    }