for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace XoopsModules\Groupmanager;
/*
Utility Class Definition
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.
*/
/**
* @package \module\xsitemap\class
* @license https://www.fsf.org/copyleft/gpl.html GNU public license
* @copyright https://xoops.org 2000-2020 © XOOPS Project
* @author Mamba <[email protected]>
* Class Utility
class Utility extends Common\SysUtility
{
//--------------- Custom module methods -----------------------------
* Access the only instance of this class
*
* @return object
public static function getInstance()
static $instance;
if (null === $instance) {
$instance = new static();
}
return $instance;