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

getSelectAction() public method

Execute the items callable if required
public getSelectAction ( ) : void
return void
    public function getSelectAction()
    {
        return;
    }

Usage Example

Example #1
0
 public function testGetSelectActionReturnsNull()
 {
     $item = new AsciiArtItem('////\\\\');
     $this->assertNull($item->getSelectAction());
 }