PhpSchool\CliMenu\MenuItem\AsciiArtItem::showsItemExtra PHP Méthode

showsItemExtra() public méthode

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

Usage Example

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