Completed
Push — master ( afa14d...f0d99a )
by Iman
13s
created

NotificationForm   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
c 0
b 0
f 0
rs 10
wmc 1
1
<?php
2
3
namespace crocodicstudio\crudbooster\Modules\NotificationsModule;
4
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
}