Exemplo n.º 1
0
<?php

/**
 * @author Patsura Dmitry http://github.com/ovr <*****@*****.**>
 */
include_once __DIR__ . '/../vendor/autoload.php';
use PHPSystem\Notify;
$service = new Notify\Service(Notify\ProviderFactory::getAvailable());
$service->sendMessage("Test");
Exemplo n.º 2
0
<?php

/**
 * @author Patsura Dmitry http://github.com/ovr <*****@*****.**>
 */
include_once __DIR__ . '/../vendor/autoload.php';
use PHPSystem\Notify;
$service = new Notify\Service(Notify\ProviderFactory::getAvailable());
$notify = new Notify\Notification("Test notify 1");
$service->notify($notify);
$notify = new Notify\Notification("Test notify 2");
$service->notify($notify);