File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -66,17 +66,17 @@ public function label(string $label): self
66
66
return $ this ->add (new Label ($ label ));
67
67
}
68
68
69
- public function checkbox (string $ label , bool $ checked = false , ? string $ hotkey = null ): self
69
+ public function checkbox (string $ label , bool $ checked = false , string $ hotkey = null ): self
70
70
{
71
71
return $ this ->add (new Checkbox ($ label , $ checked , $ hotkey ));
72
72
}
73
73
74
- public function event (string $ event , string $ text , ? string $ hotkey = null ): self
74
+ public function event (string $ event , string $ text , string $ hotkey = null ): self
75
75
{
76
76
return $ this ->add (new Event ($ event , $ text , $ hotkey ));
77
77
}
78
78
79
- public function link (string $ url , string $ text , ? string $ hotkey = null ): self
79
+ public function link (string $ url , string $ text , string $ hotkey = null ): self
80
80
{
81
81
return $ this ->add (new Link ($ url , $ text , $ hotkey ));
82
82
}
You can’t perform that action at this time.
0 commit comments