| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php namespace Magestead\Service; |
||
| 8 | public static function send() |
||
| 9 | { |
||
| 10 | $notifier = NotifierFactory::create(); |
||
| 11 | $basePath = dirname( __FILE__ ) . '/../../../'; |
||
| 12 | $notification = |
||
| 13 | (new Notify()) |
||
| 14 | ->setTitle('Magestead') |
||
| 15 | ->setBody('Magento has successfully been installed!') |
||
| 16 | ->setIcon($basePath .'assets/magentologo.png') |
||
| 17 | ; |
||
| 18 | |||
| 19 | $notifier->send($notification); |
||
| 20 | } |
||
| 21 | } |