Todaymade\Daux\Config::getHTML PHP Method

getHTML() public method

public getHTML ( )
    public function getHTML()
    {
        return new HTMLConfig($this['html']);
    }

Usage Example

Example #1
0
 function testHTMLConfigCreation()
 {
     $config = new MainConfig(['html' => ['edit_on' => 'test']]);
     $this->assertInstanceOf(Config::class, $config->getHTML());
     $this->assertEquals('test', $config->getHTML()['edit_on']);
 }