PhpSchool\CliMenu\MenuItem\SelectableItem::getText PHP Method

getText() public method

Return the raw string of text
public getText ( ) : string
return string
    public function getText()
    {
        return $this->text;
    }

Usage Example

Example #1
0
 public function testGetText()
 {
     $item = new SelectableItem('Item', function () {
     });
     $this->assertEquals('Item', $item->getText());
 }