PhpSchool\CliMenu\MenuItem\AsciiArtItem::canSelect PHP Method

canSelect() public method

Can the item be selected
public canSelect ( ) : boolean
return boolean
    public function canSelect()
    {
        return false;
    }

Usage Example

Example #1
0
 public function testCanSelectIsFalse()
 {
     $item = new AsciiArtItem('////\\\\');
     $this->assertFalse($item->canSelect());
 }