Skip to content

Commit

Permalink
Merge pull request #226 from php-school/remove-toggable-interface
Browse files Browse the repository at this point in the history
Remove ToggableItemInterface
  • Loading branch information
AydinHassan committed Dec 29, 2019
2 parents 321d274 + a980a0c commit 1b9dfac
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 28 deletions.
2 changes: 1 addition & 1 deletion src/MenuItem/CheckboxItem.php
Expand Up @@ -7,7 +7,7 @@
use PhpSchool\CliMenu\Util\StringUtil;
use PhpSchool\CliMenu\Style\CheckboxStyle;

class CheckboxItem implements MenuItemInterface, ToggableItemInterface
class CheckboxItem implements MenuItemInterface
{
/**
* @var string
Expand Down
2 changes: 1 addition & 1 deletion src/MenuItem/RadioItem.php
Expand Up @@ -7,7 +7,7 @@
use PhpSchool\CliMenu\Util\StringUtil;
use PhpSchool\CliMenu\Style\RadioStyle;

class RadioItem implements MenuItemInterface, ToggableItemInterface
class RadioItem implements MenuItemInterface
{
/**
* @var string
Expand Down
26 changes: 0 additions & 26 deletions src/MenuItem/ToggableItemInterface.php

This file was deleted.

0 comments on commit 1b9dfac

Please sign in to comment.