Imbo\Model\Status::getData PHP Method

getData() public method

public getData ( )
    public function getData()
    {
        return ['date' => $this->getDate(), 'database' => $this->getDatabaseStatus(), 'storage' => $this->getStorageStatus()];
    }

Usage Example

コード例 #1
0
ファイル: StatusTest.php プロジェクト: imbo/imbo
 /**
  * @covers Imbo\Model\Status::getData
  */
 public function testGetData()
 {
     $date = new DateTime();
     $this->model->setDate($date)->setDatabaseStatus(true)->setStorageStatus(true);
     $this->assertSame(['date' => $date, 'database' => true, 'storage' => true], $this->model->getData());
 }