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