for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace XoopsModules\Xhelp;
/*
* You may not change or alter any portion of this comment or credits
* of supporting developers from this source code or any supporting source code
* which is considered copyrighted (c) material of the original comment or credit authors.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
/**
* @copyright {@link https://xoops.org/ XOOPS Project}
* @license {@link https://www.gnu.org/licenses/gpl-2.0.html GNU GPL 2 or later}
* @author Brian Wahoff <[email protected]>
* @author XOOPS Development Team
* Renderer class
* Abstract class responsible for outputting pages of the xhelp application
class Renderer
{
* Renderer constructor.
public function __construct()
//Do Nothing
exit();
exit
In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.
}
public function render(): void
In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.