Imbo\Model\ListModel::getEntry PHP Method

getEntry() public method

Get the entry value
public getEntry ( ) : string
return string
    public function getEntry()
    {
        return $this->entry;
    }

Usage Example

Example #1
0
 /**
  * @covers Imbo\Model\ListModel::setEntry
  * @covers Imbo\Model\ListModel::getEntry
  */
 public function testCanSetAndGetAnEntryValue()
 {
     $this->assertNull($this->model->getEntry());
     $entry = 'entry';
     $this->assertSame($this->model, $this->model->setEntry($entry));
     $this->assertSame($entry, $this->model->getEntry());
 }
All Usage Examples Of Imbo\Model\ListModel::getEntry