| Total Complexity | 1 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class NotificationForm |
||
| 6 | { |
||
| 7 | public static function makeForm() |
||
| 8 | { |
||
| 9 | $form = []; |
||
| 10 | $form[] = ['label' => "Content", 'name' => "content", 'type' => "text"]; |
||
| 11 | $form[] = ['label' => "Icon", 'name' => "icon", 'type' => "text"]; |
||
| 12 | $form[] = ['label' => "Notification Command", 'name' => "notification_command", 'type' => "textarea"]; |
||
| 13 | $form[] = ['label' => "Is Read", 'name' => "is_read", 'type' => "text"]; |
||
| 14 | return $form; |
||
| 15 | } |
||
| 16 | } |