| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 12 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 7 | 
| CRAP Score | 2.0078 | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 30 | 1 | public function desktopNotify(string $title, string $body, $icon = null)  | 
            |
| 31 |     { | 
            ||
| 32 | 1 | $notification = new Notification();  | 
            |
| 33 | 1 | $notification->setTitle($title);  | 
            |
| 34 | 1 | $notification->setBody($body);  | 
            |
| 35 | |||
| 36 | 1 |         if ($icon !== null) { | 
            |
| 37 | $notification->setIcon($icon);  | 
            ||
| 38 | }  | 
            ||
| 39 | |||
| 40 | 1 | NotifierFactory::create()->send($notification);  | 
            |
| 41 | 1 | }  | 
            |
| 42 | |||
| 44 |