Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
35 | public function getFunctions() |
||
36 | { |
||
37 | $input = [ |
||
38 | 'get_alert_publisher' => [ |
||
39 | $this, |
||
40 | 'getAlertPublisher', |
||
41 | ['is_safe' => ['html']], |
||
42 | ], |
||
43 | 'render_flash_alerts' => [ |
||
44 | $this, |
||
45 | 'renderFlashAlerts', |
||
46 | ['is_safe' => ['html']], |
||
47 | ], |
||
48 | ]; |
||
49 | |||
50 | return $this->makeArray($input, 'function'); |
||
51 | } |
||
53 |