/** * Return the current object instance (Singleton) * @return RequestToken */ public static function getInstance() { if (!is_object(self::$objInstance)) { self::$objInstance = new self(); } return self::$objInstance; }