| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public static function enumTypes(): array { |
||
| 28 | return [ |
||
| 29 | AlertInterface::ALERT_TYPE_DANGER, |
||
| 30 | AlertInterface::ALERT_TYPE_DARK, |
||
| 31 | AlertInterface::ALERT_TYPE_INFO, |
||
| 32 | AlertInterface::ALERT_TYPE_LIGHT, |
||
| 33 | AlertInterface::ALERT_TYPE_PRIMARY, |
||
| 34 | AlertInterface::ALERT_TYPE_SECONDARY, |
||
| 35 | AlertInterface::ALERT_TYPE_SUCCESS, |
||
| 36 | AlertInterface::ALERT_TYPE_WARNING, |
||
| 37 | ]; |
||
| 38 | } |
||
| 39 | } |
||
| 40 |