Skip to content

Commit 1d477ba

Browse files
mpociotgithub-actions[bot]
authored andcommitted
Fix styling
1 parent ff7bdfe commit 1d477ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Menu/Menu.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,17 @@ public function label(string $label): self
6666
return $this->add(new Label($label));
6767
}
6868

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
7070
{
7171
return $this->add(new Checkbox($label, $checked, $hotkey));
7272
}
7373

74-
public function event(string $event, string $text, ?string $hotkey = null): self
74+
public function event(string $event, string $text, string $hotkey = null): self
7575
{
7676
return $this->add(new Event($event, $text, $hotkey));
7777
}
7878

79-
public function link(string $url, string $text, ?string $hotkey = null): self
79+
public function link(string $url, string $text, string $hotkey = null): self
8080
{
8181
return $this->add(new Link($url, $text, $hotkey));
8282
}

0 commit comments

Comments
 (0)