App\Entities\Setting\DbSettingEntity::getDatabase PHP Method

getDatabase() public method

public getDatabase ( )
    public function getDatabase()
    {
        return $this->database;
    }

Usage Example

コード例 #1
0
ファイル: DbSettingEntityTest.php プロジェクト: ngmy/webloyer
 public function test_Should_SetAndGetDatabase()
 {
     $dbSettingEntity = new DbSettingEntity();
     $dbSettingEntity->setDatabase('webloyer');
     $database = $dbSettingEntity->getDatabase();
     $this->assertEquals('webloyer', $database);
 }