PhpSchool\CliMenu\MenuItem\LineBreakItem::showsItemExtra PHP Method

showsItemExtra() public method

Whether or not the menu item is showing the menustyle extra value
public showsItemExtra ( ) : boolean
return boolean
    public function showsItemExtra()
    {
        return false;
    }

Usage Example

Example #1
0
 public function testShowsItemExtraReturnsFalse()
 {
     $item = new LineBreakItem('*');
     $this->assertFalse($item->showsItemExtra());
 }