Notify User in OS
Notify user in OS, (*1)
First you need to get service with provider into it:, (*2)
use PHPSystem\Notify; $service = new Notify\Service(ProviderFactory::getAvailable());
How to send text:, (*3)
$service->sendMessage("my simple test");
Send custom Notification
:, (*4)
$notification = new Notify\Notification("Simple text message"); $service->sendMessage($notification);
This project is open-sourced software licensed under the MIT License. See the LICENSE file for more information., (*5)