for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace XoopsModules\Smallworld;
/**
* 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;