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

getSelectAction() public method

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

Usage Example

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