PhpSchool\CliMenu\MenuItem\AsciiArtItem::showsItemExtra PHP 메소드

showsItemExtra() 공개 메소드

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

Usage Example

예제 #1
0
 public function testShowsItemExtraReturnsFalse()
 {
     $item = new AsciiArtItem('////\\\\');
     $this->assertFalse($item->showsItemExtra());
 }