Imbo\Model\ArrayModel::getTitle PHP Method

getTitle() public method

Get the title of the model
public getTitle ( ) : string
return string
    public function getTitle()
    {
        return $this->title;
    }

Usage Example

Beispiel #1
0
 /**
  * @covers Imbo\Model\ArrayModel::setTitle
  * @covers Imbo\Model\ArrayModel::getTitle
  */
 public function testCanSetAndGetTitle()
 {
     $this->assertNull($this->model->getTitle());
     $this->assertSame($this->model, $this->model->setTitle('title'));
     $this->assertSame('title', $this->model->getTitle());
 }