@@ -26,6 +26,7 @@ public static function fromString(string $type): ?self
26
26
return $ case ;
27
27
}
28
28
}
29
+
29
30
return null ; // Return null if no match is found
30
31
}
31
32
@@ -36,13 +37,12 @@ public function getLabel(): ?string
36
37
37
38
public function fieldName (): string
38
39
{
39
- return match ($ this )
40
- {
40
+ return match ($ this ) {
41
41
self ::TEXT => 'Text Input ' ,
42
42
self ::TEXTAREA => 'Textarea ' ,
43
43
self ::SELECT => 'Select ' ,
44
44
self ::RICH_EDITOR => 'Rich Editor ' ,
45
- self ::TOGGLE => 'Toggle ' ,
45
+ self ::TOGGLE => 'Toggle ' ,
46
46
self ::CHECKBOX => 'Checkbox ' ,
47
47
self ::RADIO => 'Radio ' ,
48
48
self ::DATE_TIME_PICKER => 'DateTime Picker ' ,
@@ -55,13 +55,12 @@ public function fieldName(): string
55
55
56
56
public function className (): string
57
57
{
58
- return match ($ this )
59
- {
58
+ return match ($ this ) {
60
59
self ::TEXT => 'Filament\Forms\Components\TextInput ' ,
61
60
self ::TEXTAREA => 'Filament\Forms\Components\Textarea ' ,
62
61
self ::SELECT => 'Filament\Forms\Components\Select ' ,
63
62
self ::RICH_EDITOR => 'Filament\Forms\Components\RichEditor ' ,
64
- self ::TOGGLE => 'Filament\Forms\Components\Toggle ' ,
63
+ self ::TOGGLE => 'Filament\Forms\Components\Toggle ' ,
65
64
self ::CHECKBOX => 'Filament\Forms\Components\Checkbox ' ,
66
65
self ::RADIO => 'Filament\Forms\Components\Radio ' ,
67
66
self ::DATE_TIME_PICKER => 'Filament\Forms\Components\DateTimePicker ' ,
@@ -74,13 +73,12 @@ public function className(): string
74
73
75
74
public function hasOptions (): bool
76
75
{
77
- return match ($ this )
78
- {
76
+ return match ($ this ) {
79
77
self ::TEXT => false ,
80
78
self ::TEXTAREA => false ,
81
79
self ::SELECT => true ,
82
80
self ::RICH_EDITOR => false ,
83
- self ::TOGGLE => false ,
81
+ self ::TOGGLE => false ,
84
82
self ::CHECKBOX => false ,
85
83
self ::RADIO => true ,
86
84
self ::DATE_TIME_PICKER => false ,
@@ -93,13 +91,12 @@ public function hasOptions(): bool
93
91
94
92
public function isBool (): bool
95
93
{
96
- return match ($ this )
97
- {
94
+ return match ($ this ) {
98
95
self ::TEXT => false ,
99
96
self ::TEXTAREA => false ,
100
97
self ::SELECT => false ,
101
98
self ::RICH_EDITOR => false ,
102
- self ::TOGGLE => true ,
99
+ self ::TOGGLE => true ,
103
100
self ::CHECKBOX => true ,
104
101
self ::RADIO => false ,
105
102
self ::DATE_TIME_PICKER => false ,
0 commit comments