Skip to content

Commit 0c48311

Browse files
committed
Drop comments
1 parent 6b72992 commit 0c48311

File tree

3 files changed

+0
-60
lines changed

3 files changed

+0
-60
lines changed

src/Builder/CliMenuBuilder.php

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -567,33 +567,13 @@ public function build() : CliMenu
567567
return $this->menu;
568568
}
569569

570-
/**
571-
* Use as
572-
*
573-
->checkboxStyle(function (CheckboxStyle $style) {
574-
$style->setMarkerOff('- ');
575-
})
576-
*
577-
* @param callable $itemCallable
578-
* @return $this
579-
*/
580570
public function checkboxStyle(callable $itemCallable) : self
581571
{
582572
$this->menu->checkboxStyle($itemCallable);
583573

584574
return $this;
585575
}
586576

587-
/**
588-
* Use as
589-
*
590-
->radioStyle(function (RadioStyle $style) {
591-
$style->setMarkerOff('- ');
592-
})
593-
*
594-
* @param callable $itemCallable
595-
* @return $this
596-
*/
597577
public function radioStyle(callable $itemCallable) : self
598578
{
599579
$this->menu->radioStyle($itemCallable);

src/Builder/SplitItemBuilder.php

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -169,33 +169,13 @@ public function build() : SplitItem
169169
return $this->splitItem;
170170
}
171171

172-
/**
173-
* Use as
174-
*
175-
->checkboxStyle(function (CheckboxStyle $style) {
176-
$style->setMarkerOff('- ');
177-
})
178-
*
179-
* @param callable $itemCallable
180-
* @return $this
181-
*/
182172
public function checkboxStyle(callable $itemCallable) : self
183173
{
184174
$this->menu->checkboxStyle($itemCallable);
185175

186176
return $this;
187177
}
188178

189-
/**
190-
* Use as
191-
*
192-
->radioStyle(function (RadioStyle $style) {
193-
$style->setMarkerOff('- ');
194-
})
195-
*
196-
* @param callable $itemCallable
197-
* @return $this
198-
*/
199179
public function radioStyle(callable $itemCallable) : self
200180
{
201181
$this->menu->radioStyle($itemCallable);

src/CliMenu.php

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -660,16 +660,6 @@ public function getCheckboxStyle() : CheckboxStyle
660660
return $this->checkboxStyle;
661661
}
662662

663-
/**
664-
* Use as
665-
*
666-
->checkboxStyle(function (CheckboxStyle $style) {
667-
$style->setMarkerOff('- ');
668-
})
669-
*
670-
* @param callable $itemCallable
671-
* @return $this
672-
*/
673663
public function checkboxStyle(callable $itemCallable) : self
674664
{
675665
$itemCallable($this->checkboxStyle);
@@ -682,16 +672,6 @@ public function getRadioStyle() : RadioStyle
682672
return $this->radioStyle;
683673
}
684674

685-
/**
686-
* Use as
687-
*
688-
->radioStyle(function (RadioStyle $style) {
689-
$style->setMarkerOff('- ');
690-
})
691-
*
692-
* @param callable $itemCallable
693-
* @return $this
694-
*/
695675
public function radioStyle(callable $itemCallable) : self
696676
{
697677
$itemCallable($this->radioStyle);

0 commit comments

Comments
 (0)