/**
 * Get the helper instance.
 *
 * @return  self
 *
 * @since   3.6.3
 */
public static function getInstance()
{
    if (static::$instance === null) {
        // Only here to avoid code style issues...
        $groups = array();
        static::$instance = new static($groups, static::MODE_SINGLETON);
    }
    return static::$instance;
}