| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 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 | } |