Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 2 |
1 | <?php namespace Magestead\Service; |
||
17 | public static function send($message) |
||
18 | { |
||
19 | $notifier = NotifierFactory::create(); |
||
20 | $basePath = dirname( __FILE__ ) . '/../../../'; |
||
21 | $notification = |
||
22 | (new Notify()) |
||
23 | ->setTitle('Magestead') |
||
24 | ->setBody($message) |
||
25 | ->setIcon($basePath .'assets/magentologo.png') |
||
26 | ; |
||
27 | |||
28 | $notifier->send($notification); |
||
29 | } |
||
30 | } |