Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function notify(string $type, string $message = '', string $title = '', string $options = ''): string |
||
28 | { |
||
29 | $options = substr($options, 1, -1); |
||
30 | |||
31 | if (empty($options)) { |
||
32 | return "new PNotify({title:'$title', text:'$message', type:'$type'});"; |
||
33 | } |
||
34 | |||
35 | return "new PNotify({title:'$title', text:'$message', type:'$type', $options});"; |
||
36 | } |
||
37 | } |
||
38 |