ManaPHP\Renderer::startSection PHP Method

startSection() public method

Start injecting content into a section.
public startSection ( string $section ) : void
$section string
return void
    public function startSection($section)
    {
        ob_start();
        $this->_sectionStack[] = $section;
    }