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

canSelect() 공개 메소드

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

Usage Example

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