for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Magestead\Service;
use Joli\JoliNotif\Notification as Notify;
use Joli\JoliNotif\NotifierFactory;
class Notification
{
public static function send()
$notifier = NotifierFactory::create();
$basePath = dirname( __FILE__ ) . '/../../../';
$notification =
(new Notify())
->setTitle('Magestead')
->setBody('Magento has successfully been installed!')
->setIcon($basePath .'assets/magentologo.png')
;
$notifier->send($notification);
}