PMA\libraries\Response::disable PHP Method

disable() public method

Disables the rendering of the header and the footer in responses
public disable ( ) : void
return void
    public function disable()
    {
        $this->_header->disable();
        $this->_footer->disable();
        $this->_isDisabled = true;
    }