]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/CasAuthentication/extlib/CAS.php
Merge branch 'nightly' of git.gnu.io:gnu/gnu-social into mmn_fixes
[quix0rs-gnu-social.git] / plugins / CasAuthentication / extlib / CAS.php
index e754374198d1d9aa3669ba7464b0aec432c84d5b..62a61757943b3baf78b8acacdd73ce8495f311af 100644 (file)
@@ -1,20 +1,46 @@
 <?php\r
 \r
-// commented in 0.4.22-RC2 for Sylvain Derosiaux\r
-// error_reporting(E_ALL ^ E_NOTICE);\r
+/*\r
+ * Copyright © 2003-2010, The ESUP-Portail consortium & the JA-SIG Collaborative.\r
+ * All rights reserved.\r
+ * \r
+ * Redistribution and use in source and binary forms, with or without\r
+ * modification, are permitted provided that the following conditions are met:\r
+ * \r
+ *     * Redistributions of source code must retain the above copyright notice,\r
+ *       this list of conditions and the following disclaimer.\r
+ *     * Redistributions in binary form must reproduce the above copyright notice,\r
+ *       this list of conditions and the following disclaimer in the documentation\r
+ *       and/or other materials provided with the distribution.\r
+ *     * Neither the name of the ESUP-Portail consortium & the JA-SIG\r
+ *       Collaborative nor the names of its contributors may be used to endorse or\r
+ *       promote products derived from this software without specific prior\r
+ *       written permission.\r
+\r
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND\r
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\r
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\r
+ * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\r
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\r
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\r
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\r
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
+ */\r
 \r
 //\r
 // hack by Vangelis Haniotakis to handle the absence of $_SERVER['REQUEST_URI'] in IIS\r
 //\r
 if (!$_SERVER['REQUEST_URI']) {\r
-       $_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'].'?'.$_SERVER['QUERY_STRING'];\r
+       $_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'] . '?' . $_SERVER['QUERY_STRING'];\r
 }\r
 \r
 //\r
 // another one by Vangelis Haniotakis also to make phpCAS work with PHP5\r
 //\r
-if (version_compare(PHP_VERSION,'5','>=')) {\r
-       require_once(dirname(__FILE__).'/CAS/domxml-php4-to-php5.php');\r
+if (version_compare(PHP_VERSION, '5', '>=') && !(function_exists('domxml_new_doc'))) {\r
+       require_once (dirname(__FILE__) . '/CAS/domxml-php4-to-php5.php');\r
 }\r
 \r
 /**\r
@@ -35,24 +61,24 @@ if (version_compare(PHP_VERSION,'5','>=')) {
 /**\r
  * phpCAS version. accessible for the user by phpCAS::getVersion().\r
  */\r
-define('PHPCAS_VERSION','1.1.0RC6');\r
+define('PHPCAS_VERSION', '1.1.2');\r
 \r
 // ------------------------------------------------------------------------\r
 //  CAS VERSIONS\r
 // ------------------------------------------------------------------------\r
- /**\r
 * @addtogroup public\r
 * @{\r
 */\r
+/**\r
+ * @addtogroup public\r
+ * @{\r
+ */\r
 \r
 /**\r
  * CAS version 1.0\r
  */\r
-define("CAS_VERSION_1_0",'1.0');\r
+define("CAS_VERSION_1_0", '1.0');\r
 /*!\r
  * CAS version 2.0\r
  */\r
-define("CAS_VERSION_2_0",'2.0');\r
+define("CAS_VERSION_2_0", '2.0');\r
 \r
 // ------------------------------------------------------------------------\r
 //  SAML defines\r
@@ -71,143 +97,141 @@ define("SAML_XML_HEADER", '<?xml version="1.0" encoding="UTF-8"?>');
 /**\r
  * SOAP envelope for SAML POST\r
  */\r
-define ("SAML_SOAP_ENV", '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Header/>');\r
+define("SAML_SOAP_ENV", '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Header/>');\r
 \r
 /**\r
  * SOAP body for SAML POST\r
  */\r
-define ("SAML_SOAP_BODY", '<SOAP-ENV:Body>');\r
+define("SAML_SOAP_BODY", '<SOAP-ENV:Body>');\r
 \r
 /**\r
  * SAMLP request\r
  */\r
-define ("SAMLP_REQUEST", '<samlp:Request xmlns:samlp="urn:oasis:names:tc:SAML:1.0:protocol"  MajorVersion="1" MinorVersion="1" RequestID="_192.168.16.51.1024506224022" IssueInstant="2002-06-19T17:03:44.022Z">');\r
-define ("SAMLP_REQUEST_CLOSE", '</samlp:Request>');\r
+define("SAMLP_REQUEST", '<samlp:Request xmlns:samlp="urn:oasis:names:tc:SAML:1.0:protocol"  MajorVersion="1" MinorVersion="1" RequestID="_192.168.16.51.1024506224022" IssueInstant="2002-06-19T17:03:44.022Z">');\r
+define("SAMLP_REQUEST_CLOSE", '</samlp:Request>');\r
 \r
 /**\r
  * SAMLP artifact tag (for the ticket)\r
  */\r
-define ("SAML_ASSERTION_ARTIFACT", '<samlp:AssertionArtifact>');\r
+define("SAML_ASSERTION_ARTIFACT", '<samlp:AssertionArtifact>');\r
 \r
 /**\r
  * SAMLP close\r
  */\r
-define ("SAML_ASSERTION_ARTIFACT_CLOSE", '</samlp:AssertionArtifact>');\r
+define("SAML_ASSERTION_ARTIFACT_CLOSE", '</samlp:AssertionArtifact>');\r
 \r
 /**\r
  * SOAP body close\r
  */\r
-define ("SAML_SOAP_BODY_CLOSE", '</SOAP-ENV:Body>');\r
+define("SAML_SOAP_BODY_CLOSE", '</SOAP-ENV:Body>');\r
 \r
 /**\r
  * SOAP envelope close\r
  */\r
-define ("SAML_SOAP_ENV_CLOSE", '</SOAP-ENV:Envelope>');\r
+define("SAML_SOAP_ENV_CLOSE", '</SOAP-ENV:Envelope>');\r
 \r
 /**\r
  * SAML Attributes\r
  */\r
 define("SAML_ATTRIBUTES", 'SAMLATTRIBS');\r
 \r
-\r
-\r
 /** @} */\r
- /**\r
 * @addtogroup publicPGTStorage\r
 * @{\r
 */\r
+/**\r
+ * @addtogroup publicPGTStorage\r
+ * @{\r
+ */\r
 // ------------------------------------------------------------------------\r
 //  FILE PGT STORAGE\r
 // ------------------------------------------------------------------------\r
- /**\r
 * Default path used when storing PGT's to file\r
 */\r
-define("CAS_PGT_STORAGE_FILE_DEFAULT_PATH",'/tmp');\r
+/**\r
+ * Default path used when storing PGT's to file\r
+ */\r
+define("CAS_PGT_STORAGE_FILE_DEFAULT_PATH", '/tmp');\r
 /**\r
  * phpCAS::setPGTStorageFile()'s 2nd parameter to write plain text files\r
  */\r
-define("CAS_PGT_STORAGE_FILE_FORMAT_PLAIN",'plain');\r
+define("CAS_PGT_STORAGE_FILE_FORMAT_PLAIN", 'plain');\r
 /**\r
  * phpCAS::setPGTStorageFile()'s 2nd parameter to write xml files\r
  */\r
-define("CAS_PGT_STORAGE_FILE_FORMAT_XML",'xml');\r
+define("CAS_PGT_STORAGE_FILE_FORMAT_XML", 'xml');\r
 /**\r
  * Default format used when storing PGT's to file\r
  */\r
-define("CAS_PGT_STORAGE_FILE_DEFAULT_FORMAT",CAS_PGT_STORAGE_FILE_FORMAT_PLAIN);\r
+define("CAS_PGT_STORAGE_FILE_DEFAULT_FORMAT", CAS_PGT_STORAGE_FILE_FORMAT_PLAIN);\r
 // ------------------------------------------------------------------------\r
 //  DATABASE PGT STORAGE\r
 // ------------------------------------------------------------------------\r
- /**\r
 * default database type when storing PGT's to database\r
 */\r
-define("CAS_PGT_STORAGE_DB_DEFAULT_DATABASE_TYPE",'mysql');\r
+/**\r
+ * default database type when storing PGT's to database\r
+ */\r
+define("CAS_PGT_STORAGE_DB_DEFAULT_DATABASE_TYPE", 'mysql');\r
 /**\r
  * default host when storing PGT's to database\r
  */\r
-define("CAS_PGT_STORAGE_DB_DEFAULT_HOSTNAME",'localhost');\r
+define("CAS_PGT_STORAGE_DB_DEFAULT_HOSTNAME", 'localhost');\r
 /**\r
  * default port when storing PGT's to database\r
  */\r
-define("CAS_PGT_STORAGE_DB_DEFAULT_PORT",'');\r
+define("CAS_PGT_STORAGE_DB_DEFAULT_PORT", '');\r
 /**\r
  * default database when storing PGT's to database\r
  */\r
-define("CAS_PGT_STORAGE_DB_DEFAULT_DATABASE",'phpCAS');\r
+define("CAS_PGT_STORAGE_DB_DEFAULT_DATABASE", 'phpCAS');\r
 /**\r
  * default table when storing PGT's to database\r
  */\r
-define("CAS_PGT_STORAGE_DB_DEFAULT_TABLE",'pgt');\r
+define("CAS_PGT_STORAGE_DB_DEFAULT_TABLE", 'pgt');\r
 \r
 /** @} */\r
 // ------------------------------------------------------------------------\r
 // SERVICE ACCESS ERRORS\r
 // ------------------------------------------------------------------------\r
- /**\r
 * @addtogroup publicServices\r
 * @{\r
 */\r
+/**\r
+ * @addtogroup publicServices\r
+ * @{\r
+ */\r
 \r
 /**\r
  * phpCAS::service() error code on success\r
  */\r
-define("PHPCAS_SERVICE_OK",0);\r
+define("PHPCAS_SERVICE_OK", 0);\r
 /**\r
  * phpCAS::service() error code when the PT could not retrieve because\r
  * the CAS server did not respond.\r
  */\r
-define("PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE",1);\r
+define("PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE", 1);\r
 /**\r
  * phpCAS::service() error code when the PT could not retrieve because\r
  * the response of the CAS server was ill-formed.\r
  */\r
-define("PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE",2);\r
+define("PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE", 2);\r
 /**\r
  * phpCAS::service() error code when the PT could not retrieve because\r
  * the CAS server did not want to.\r
  */\r
-define("PHPCAS_SERVICE_PT_FAILURE",3);\r
+define("PHPCAS_SERVICE_PT_FAILURE", 3);\r
 /**\r
  * phpCAS::service() error code when the service was not available.\r
  */\r
-define("PHPCAS_SERVICE_NOT AVAILABLE",4);\r
+define("PHPCAS_SERVICE_NOT AVAILABLE", 4);\r
 \r
 /** @} */\r
 // ------------------------------------------------------------------------\r
 //  LANGUAGES\r
 // ------------------------------------------------------------------------\r
- /**\r
 * @addtogroup publicLang\r
 * @{\r
 */\r
-\r
-define("PHPCAS_LANG_ENGLISH",    'english');\r
-define("PHPCAS_LANG_FRENCH",     'french');\r
-define("PHPCAS_LANG_GREEK",      'greek');\r
-define("PHPCAS_LANG_GERMAN",     'german');\r
-define("PHPCAS_LANG_JAPANESE",   'japanese');\r
-define("PHPCAS_LANG_SPANISH",    'spanish');\r
-define("PHPCAS_LANG_CATALAN",    'catalan');\r
+/**\r
+ * @addtogroup publicLang\r
+ * @{\r
+ */\r
+\r
+define("PHPCAS_LANG_ENGLISH", 'english');\r
+define("PHPCAS_LANG_FRENCH", 'french');\r
+define("PHPCAS_LANG_GREEK", 'greek');\r
+define("PHPCAS_LANG_GERMAN", 'german');\r
+define("PHPCAS_LANG_JAPANESE", 'japanese');\r
+define("PHPCAS_LANG_SPANISH", 'spanish');\r
+define("PHPCAS_LANG_CATALAN", 'catalan');\r
 \r
 /** @} */\r
 \r
@@ -225,31 +249,31 @@ define("PHPCAS_LANG_DEFAULT", PHPCAS_LANG_ENGLISH);
 // ------------------------------------------------------------------------\r
 //  DEBUG\r
 // ------------------------------------------------------------------------\r
- /**\r
 * @addtogroup publicDebug\r
 * @{\r
 */\r
+/**\r
+ * @addtogroup publicDebug\r
+ * @{\r
+ */\r
 \r
 /**\r
  * The default directory for the debug file under Unix.\r
  */\r
-define('DEFAULT_DEBUG_DIR','/tmp/');\r
+define('DEFAULT_DEBUG_DIR', '/tmp/');\r
 \r
 /** @} */\r
 // ------------------------------------------------------------------------\r
 //  MISC\r
 // ------------------------------------------------------------------------\r
- /**\r
 * @addtogroup internalMisc\r
 * @{\r
 */\r
+/**\r
+ * @addtogroup internalMisc\r
+ * @{\r
+ */\r
 \r
 /**\r
  * This global variable is used by the interface class phpCAS.\r
  *\r
  * @hideinitializer\r
  */\r
-$GLOBALS['PHPCAS_CLIENT']  = null;\r
+$GLOBALS['PHPCAS_CLIENT'] = null;\r
 \r
 /**\r
  * This global variable is used to store where the initializer is called from \r
@@ -257,10 +281,12 @@ $GLOBALS['PHPCAS_CLIENT']  = null;
  *\r
  * @hideinitializer\r
  */\r
-$GLOBALS['PHPCAS_INIT_CALL'] = array('done' => FALSE,\r
+$GLOBALS['PHPCAS_INIT_CALL'] = array (\r
+       'done' => FALSE,\r
        'file' => '?',\r
        'line' => -1,\r
-       'method' => '?');\r
+       'method' => '?'\r
+);\r
 \r
 /**\r
  * This global variable is used to store where the method checking\r
@@ -268,20 +294,24 @@ $GLOBALS['PHPCAS_INIT_CALL'] = array('done' => FALSE,
  *\r
  * @hideinitializer\r
  */\r
-$GLOBALS['PHPCAS_AUTH_CHECK_CALL'] = array('done' => FALSE,\r
+$GLOBALS['PHPCAS_AUTH_CHECK_CALL'] = array (\r
+       'done' => FALSE,\r
        'file' => '?',\r
        'line' => -1,\r
        'method' => '?',\r
-       'result' => FALSE);\r
+       'result' => FALSE\r
+);\r
 \r
 /**\r
  * This global variable is used to store phpCAS debug mode.\r
  *\r
  * @hideinitializer\r
  */\r
-$GLOBALS['PHPCAS_DEBUG']  = array('filename' => FALSE,\r
+$GLOBALS['PHPCAS_DEBUG'] = array (\r
+       'filename' => FALSE,\r
        'indent' => 0,\r
-       'unique_id' => '');\r
+       'unique_id' => ''\r
+);\r
 \r
 /** @} */\r
 \r
@@ -290,7 +320,7 @@ $GLOBALS['PHPCAS_DEBUG']  = array('filename' => FALSE,
 // ########################################################################\r
 \r
 // include client class\r
-include_once(dirname(__FILE__).'/CAS/client.php');\r
+include_once (dirname(__FILE__) . '/CAS/client.php');\r
 \r
 // ########################################################################\r
 //  INTERFACE CLASS\r
@@ -308,20 +338,17 @@ include_once(dirname(__FILE__).'/CAS/client.php');
  * at the end of CAS/client.php).\r
  */\r
 \r
+class phpCAS {\r
 \r
-\r
-class phpCAS\r
-{\r
-       \r
        // ########################################################################\r
        //  INITIALIZATION\r
        // ########################################################################\r
-       \r
+\r
        /**\r
         * @addtogroup publicInit\r
         * @{\r
         */\r
-       \r
+\r
        /**\r
         * phpCAS client initializer.\r
         * @note Only one of the phpCAS::client() and phpCAS::proxy functions should be\r
@@ -336,43 +363,41 @@ class phpCAS
         *\r
         * @return a newly created CASClient object\r
         */\r
-       function client($server_version,\r
-                                       $server_hostname,\r
-                                       $server_port,\r
-                                       $server_uri,\r
-                                       $start_session = true)\r
-               {\r
+       function client($server_version, $server_hostname, $server_port, $server_uri, $start_session = true) {\r
                global $PHPCAS_CLIENT, $PHPCAS_INIT_CALL;\r
-               \r
-               phpCAS::traceBegin();\r
-               if ( is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error($PHPCAS_INIT_CALL['method'].'() has already been called (at '.$PHPCAS_INIT_CALL['file'].':'.$PHPCAS_INIT_CALL['line'].')');\r
+\r
+               phpCAS :: traceBegin();\r
+               if (is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error($PHPCAS_INIT_CALL['method'] . '() has already been called (at ' . $PHPCAS_INIT_CALL['file'] . ':' . $PHPCAS_INIT_CALL['line'] . ')');\r
                }\r
-               if ( gettype($server_version) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $server_version (should be `string\')');\r
+               if (gettype($server_version) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $server_version (should be `string\')');\r
                }\r
-               if ( gettype($server_hostname) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $server_hostname (should be `string\')');\r
+               if (gettype($server_hostname) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $server_hostname (should be `string\')');\r
                }\r
-               if ( gettype($server_port) != 'integer' ) {\r
-                       phpCAS::error('type mismatched for parameter $server_port (should be `integer\')');\r
+               if (gettype($server_port) != 'integer') {\r
+                       phpCAS :: error('type mismatched for parameter $server_port (should be `integer\')');\r
                }\r
-               if ( gettype($server_uri) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $server_uri (should be `string\')');\r
+               if (gettype($server_uri) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $server_uri (should be `string\')');\r
                }\r
-               \r
+\r
                // store where the initializer is called from\r
-               $dbg = phpCAS::backtrace();\r
-               $PHPCAS_INIT_CALL = array('done' => TRUE,\r
+               $dbg = phpCAS :: backtrace();\r
+               $PHPCAS_INIT_CALL = array (\r
+                       'done' => TRUE,\r
                        'file' => $dbg[0]['file'],\r
                        'line' => $dbg[0]['line'],\r
-                       'method' => __CLASS__.'::'.__FUNCTION__);\r
-               \r
+                       'method' => __CLASS__ . '::' . __FUNCTION__\r
+               );\r
+\r
                // initialize the global object $PHPCAS_CLIENT\r
-               $PHPCAS_CLIENT = new CASClient($server_version,FALSE/*proxy*/,$server_hostname,$server_port,$server_uri,$start_session);\r
-               phpCAS::traceEnd();\r
-               }\r
-       \r
+               $PHPCAS_CLIENT = new CASClient($server_version, FALSE /*proxy*/\r
+               , $server_hostname, $server_port, $server_uri, $start_session);\r
+               phpCAS :: traceEnd();\r
+       }\r
+\r
        /**\r
         * phpCAS proxy initializer.\r
         * @note Only one of the phpCAS::client() and phpCAS::proxy functions should be\r
@@ -387,110 +412,107 @@ class phpCAS
         *\r
         * @return a newly created CASClient object\r
         */\r
-       function proxy($server_version,\r
-                                  $server_hostname,\r
-                                  $server_port,\r
-                                  $server_uri,\r
-                                  $start_session = true)\r
-               {\r
+       function proxy($server_version, $server_hostname, $server_port, $server_uri, $start_session = true) {\r
                global $PHPCAS_CLIENT, $PHPCAS_INIT_CALL;\r
-               \r
-               phpCAS::traceBegin();\r
-               if ( is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error($PHPCAS_INIT_CALL['method'].'() has already been called (at '.$PHPCAS_INIT_CALL['file'].':'.$PHPCAS_INIT_CALL['line'].')');\r
+\r
+               phpCAS :: traceBegin();\r
+               if (is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error($PHPCAS_INIT_CALL['method'] . '() has already been called (at ' . $PHPCAS_INIT_CALL['file'] . ':' . $PHPCAS_INIT_CALL['line'] . ')');\r
                }\r
-               if ( gettype($server_version) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $server_version (should be `string\')');\r
+               if (gettype($server_version) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $server_version (should be `string\')');\r
                }\r
-               if ( gettype($server_hostname) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $server_hostname (should be `string\')');\r
+               if (gettype($server_hostname) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $server_hostname (should be `string\')');\r
                }\r
-               if ( gettype($server_port) != 'integer' ) {\r
-                       phpCAS::error('type mismatched for parameter $server_port (should be `integer\')');\r
+               if (gettype($server_port) != 'integer') {\r
+                       phpCAS :: error('type mismatched for parameter $server_port (should be `integer\')');\r
                }\r
-               if ( gettype($server_uri) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $server_uri (should be `string\')');\r
+               if (gettype($server_uri) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $server_uri (should be `string\')');\r
                }\r
-               \r
+\r
                // store where the initialzer is called from\r
-               $dbg = phpCAS::backtrace();\r
-               $PHPCAS_INIT_CALL = array('done' => TRUE,\r
+               $dbg = phpCAS :: backtrace();\r
+               $PHPCAS_INIT_CALL = array (\r
+                       'done' => TRUE,\r
                        'file' => $dbg[0]['file'],\r
                        'line' => $dbg[0]['line'],\r
-                       'method' => __CLASS__.'::'.__FUNCTION__);\r
-               \r
+                       'method' => __CLASS__ . '::' . __FUNCTION__\r
+               );\r
+\r
                // initialize the global object $PHPCAS_CLIENT\r
-               $PHPCAS_CLIENT = new CASClient($server_version,TRUE/*proxy*/,$server_hostname,$server_port,$server_uri,$start_session);\r
-               phpCAS::traceEnd();\r
-               }\r
-       \r
+               $PHPCAS_CLIENT = new CASClient($server_version, TRUE /*proxy*/\r
+               , $server_hostname, $server_port, $server_uri, $start_session);\r
+               phpCAS :: traceEnd();\r
+       }\r
+\r
        /** @} */\r
        // ########################################################################\r
        //  DEBUGGING\r
        // ########################################################################\r
-       \r
+\r
        /**\r
         * @addtogroup publicDebug\r
         * @{\r
         */\r
-       \r
+\r
        /**\r
         * Set/unset debug mode\r
         *\r
         * @param $filename the name of the file used for logging, or FALSE to stop debugging.\r
         */\r
-       function setDebug($filename='')\r
-               {\r
+       function setDebug($filename = '') {\r
                global $PHPCAS_DEBUG;\r
-               \r
-               if ( $filename != FALSE && gettype($filename) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $dbg (should be FALSE or the name of the log file)');\r
-               }\r
-               \r
-               if ( empty($filename) ) {\r
-                       if ( preg_match('/^Win.*/',getenv('OS')) ) {\r
-                               if ( isset($_ENV['TMP']) ) {\r
-                                       $debugDir = $_ENV['TMP'].'/';\r
-                               } else if ( isset($_ENV['TEMP']) ) {\r
-                                       $debugDir = $_ENV['TEMP'].'/';\r
-                               } else {\r
-                                       $debugDir = '';\r
-                               }\r
+\r
+               if ($filename != FALSE && gettype($filename) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $dbg (should be FALSE or the name of the log file)');\r
+               }\r
+\r
+               if (empty ($filename)) {\r
+                       if (preg_match('/^Win.*/', getenv('OS'))) {\r
+                               if (isset ($_ENV['TMP'])) {\r
+                                       $debugDir = $_ENV['TMP'] . '/';\r
+                               } else\r
+                                       if (isset ($_ENV['TEMP'])) {\r
+                                               $debugDir = $_ENV['TEMP'] . '/';\r
+                                       } else {\r
+                                               $debugDir = '';\r
+                                       }\r
                        } else {\r
                                $debugDir = DEFAULT_DEBUG_DIR;\r
                        }\r
                        $filename = $debugDir . 'phpCAS.log';\r
                }\r
-               \r
-               if ( empty($PHPCAS_DEBUG['unique_id']) ) {\r
-                       $PHPCAS_DEBUG['unique_id'] = substr(strtoupper(md5(uniqid(''))),0,4);\r
+\r
+               if (empty ($PHPCAS_DEBUG['unique_id'])) {\r
+                       $PHPCAS_DEBUG['unique_id'] = substr(strtoupper(md5(uniqid(''))), 0, 4);\r
                }\r
-               \r
+\r
                $PHPCAS_DEBUG['filename'] = $filename;\r
-               \r
-               phpCAS::trace('START ******************');\r
-               }\r
-       \r
+\r
+               phpCAS :: trace('START phpCAS-' . PHPCAS_VERSION . ' ******************');\r
+       }\r
+\r
        /** @} */\r
        /**\r
         * @addtogroup internalDebug\r
         * @{\r
         */\r
-       \r
+\r
        /**\r
         * This method is a wrapper for debug_backtrace() that is not available \r
         * in all PHP versions (>= 4.3.0 only)\r
         */\r
-       function backtrace()\r
-               {\r
-               if ( function_exists('debug_backtrace') ) {\r
+       function backtrace() {\r
+               if (function_exists('debug_backtrace')) {\r
                        return debug_backtrace();\r
                } else {\r
                        // poor man's hack ... but it does work ...\r
-                       return array();\r
-               }\r
+                       return array ();\r
                }\r
-       \r
+       }\r
+\r
        /**\r
         * Logs a string in debug mode.\r
         *\r
@@ -498,20 +520,19 @@ class phpCAS
         *\r
         * @private\r
         */\r
-       function log($str)\r
-               {\r
+       function log($str) {\r
                $indent_str = ".";\r
                global $PHPCAS_DEBUG;\r
-               \r
-               if ( $PHPCAS_DEBUG['filename'] ) {\r
-                       for ($i=0;$i<$PHPCAS_DEBUG['indent'];$i++) {\r
+\r
+               if ($PHPCAS_DEBUG['filename']) {\r
+                       for ($i = 0; $i < $PHPCAS_DEBUG['indent']; $i++) {\r
                                $indent_str .= '|    ';\r
                        }\r
-                       error_log($PHPCAS_DEBUG['unique_id'].' '.$indent_str.$str."\n",3,$PHPCAS_DEBUG['filename']);\r
-               }\r
-               \r
+                       error_log($PHPCAS_DEBUG['unique_id'] . ' ' . $indent_str . $str . "\n", 3, $PHPCAS_DEBUG['filename']);\r
                }\r
-       \r
+\r
+       }\r
+\r
        /**\r
         * This method is used by interface methods to print an error and where the function\r
         * was originally called from.\r
@@ -520,16 +541,15 @@ class phpCAS
         *\r
         * @private\r
         */\r
-       function error($msg)\r
-               {\r
-               $dbg = phpCAS::backtrace();\r
+       function error($msg) {\r
+               $dbg = phpCAS :: backtrace();\r
                $function = '?';\r
                $file = '?';\r
                $line = '?';\r
-               if ( is_array($dbg) ) {\r
-                       for ( $i=1; $i<sizeof($dbg); $i++) {\r
-                               if ( is_array($dbg[$i]) ) {\r
-                                       if ( $dbg[$i]['class'] == __CLASS__ ) {\r
+               if (is_array($dbg)) {\r
+                       for ($i = 1; $i < sizeof($dbg); $i++) {\r
+                               if (is_array($dbg[$i])) {\r
+                                       if ($dbg[$i]['class'] == __CLASS__) {\r
                                                $function = $dbg[$i]['function'];\r
                                                $file = $dbg[$i]['file'];\r
                                                $line = $dbg[$i]['line'];\r
@@ -537,77 +557,73 @@ class phpCAS
                                }\r
                        }\r
                }\r
-               echo "<br />\n<b>phpCAS error</b>: <font color=\"FF0000\"><b>".__CLASS__."::".$function.'(): '.htmlentities($msg)."</b></font> in <b>".$file."</b> on line <b>".$line."</b><br />\n";\r
-               phpCAS::trace($msg);\r
-               phpCAS::traceExit();\r
-               exit();\r
-               }\r
-       \r
+               echo "<br />\n<b>phpCAS error</b>: <font color=\"FF0000\"><b>" . __CLASS__ . "::" . $function . '(): ' . htmlentities($msg) . "</b></font> in <b>" . $file . "</b> on line <b>" . $line . "</b><br />\n";\r
+               phpCAS :: trace($msg);\r
+               phpCAS :: traceExit();\r
+               exit ();\r
+       }\r
+\r
        /**\r
         * This method is used to log something in debug mode.\r
         */\r
-       function trace($str)\r
-               {\r
-               $dbg = phpCAS::backtrace();\r
-               phpCAS::log($str.' ['.basename($dbg[1]['file']).':'.$dbg[1]['line'].']');\r
-               }\r
-       \r
+       function trace($str) {\r
+               $dbg = phpCAS :: backtrace();\r
+               phpCAS :: log($str . ' [' . basename($dbg[1]['file']) . ':' . $dbg[1]['line'] . ']');\r
+       }\r
+\r
        /**\r
         * This method is used to indicate the start of the execution of a function in debug mode.\r
         */\r
-       function traceBegin()\r
-               {\r
+       function traceBegin() {\r
                global $PHPCAS_DEBUG;\r
-               \r
-               $dbg = phpCAS::backtrace();\r
+\r
+               $dbg = phpCAS :: backtrace();\r
                $str = '=> ';\r
-               if ( !empty($dbg[2]['class']) ) {\r
-                       $str .= $dbg[2]['class'].'::';\r
+               if (!empty ($dbg[2]['class'])) {\r
+                       $str .= $dbg[2]['class'] . '::';\r
                }\r
-               $str .= $dbg[2]['function'].'(';      \r
-               if ( is_array($dbg[2]['args']) ) {\r
+               $str .= $dbg[2]['function'] . '(';\r
+               if (is_array($dbg[2]['args'])) {\r
                        foreach ($dbg[2]['args'] as $index => $arg) {\r
-                               if ( $index != 0 ) {\r
+                               if ($index != 0) {\r
                                        $str .= ', ';\r
                                }\r
-                               $str .= str_replace("\n","",var_export($arg,TRUE));\r
+                               $str .= str_replace("\n", "", var_export($arg, TRUE));\r
                        }\r
                }\r
-               $str .= ') ['.basename($dbg[2]['file']).':'.$dbg[2]['line'].']';\r
-               phpCAS::log($str);\r
-               $PHPCAS_DEBUG['indent'] ++;\r
-               }\r
-       \r
+               $str .= ') [' . basename($dbg[2]['file']) . ':' . $dbg[2]['line'] . ']';\r
+               phpCAS :: log($str);\r
+               $PHPCAS_DEBUG['indent']++;\r
+       }\r
+\r
        /**\r
         * This method is used to indicate the end of the execution of a function in debug mode.\r
         *\r
         * @param $res the result of the function\r
         */\r
-       function traceEnd($res='')\r
-               {\r
+       function traceEnd($res = '') {\r
                global $PHPCAS_DEBUG;\r
-               \r
-               $PHPCAS_DEBUG['indent'] --;\r
-               $dbg = phpCAS::backtrace();\r
+\r
+               $PHPCAS_DEBUG['indent']--;\r
+               $dbg = phpCAS :: backtrace();\r
                $str = '';\r
-               $str .= '<= '.str_replace("\n","",var_export($res,TRUE));\r
-               phpCAS::log($str);\r
-               }\r
-       \r
+               $str .= '<= ' . str_replace("\n", "", var_export($res, TRUE));\r
+               phpCAS :: log($str);\r
+       }\r
+\r
        /**\r
         * This method is used to indicate the end of the execution of the program\r
         */\r
-       function traceExit()\r
-               {\r
+       function traceExit() {\r
                global $PHPCAS_DEBUG;\r
-               \r
-               phpCAS::log('exit()');\r
-               while ( $PHPCAS_DEBUG['indent'] > 0 ) {\r
-                       phpCAS::log('-');\r
-                       $PHPCAS_DEBUG['indent'] --;\r
-               }\r
+\r
+               phpCAS :: log('exit()');\r
+               while ($PHPCAS_DEBUG['indent'] > 0) {\r
+                       phpCAS :: log('-');\r
+                       $PHPCAS_DEBUG['indent']--;\r
                }\r
-       \r
+       }\r
+\r
        /** @} */\r
        // ########################################################################\r
        //  INTERNATIONALIZATION\r
@@ -616,7 +632,7 @@ class phpCAS
         * @addtogroup publicLang\r
         * @{\r
         */\r
-       \r
+\r
        /**\r
         * This method is used to set the language used by phpCAS. \r
         * @note Can be called only once.\r
@@ -625,18 +641,17 @@ class phpCAS
         *\r
         * @sa PHPCAS_LANG_FRENCH, PHPCAS_LANG_ENGLISH\r
         */\r
-       function setLang($lang)\r
-               {\r
+       function setLang($lang) {\r
                global $PHPCAS_CLIENT;\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');\r
                }\r
-               if ( gettype($lang) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $lang (should be `string\')');\r
+               if (gettype($lang) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $lang (should be `string\')');\r
                }\r
                $PHPCAS_CLIENT->setLang($lang);\r
-               }\r
-       \r
+       }\r
+\r
        /** @} */\r
        // ########################################################################\r
        //  VERSION\r
@@ -645,17 +660,16 @@ class phpCAS
         * @addtogroup public\r
         * @{\r
         */\r
-       \r
+\r
        /**\r
         * This method returns the phpCAS version.\r
         *\r
         * @return the phpCAS version.\r
         */\r
-       function getVersion()\r
-               {\r
+       function getVersion() {\r
                return PHPCAS_VERSION;\r
-               }\r
-       \r
+       }\r
+\r
        /** @} */\r
        // ########################################################################\r
        //  HTML OUTPUT\r
@@ -664,41 +678,39 @@ class phpCAS
         * @addtogroup publicOutput\r
         * @{\r
         */\r
-       \r
+\r
        /**\r
         * This method sets the HTML header used for all outputs.\r
         *\r
         * @param $header the HTML header.\r
         */\r
-       function setHTMLHeader($header)\r
-               {\r
+       function setHTMLHeader($header) {\r
                global $PHPCAS_CLIENT;\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');\r
                }\r
-               if ( gettype($header) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $header (should be `string\')');\r
+               if (gettype($header) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $header (should be `string\')');\r
                }\r
                $PHPCAS_CLIENT->setHTMLHeader($header);\r
-               }\r
-       \r
+       }\r
+\r
        /**\r
         * This method sets the HTML footer used for all outputs.\r
         *\r
         * @param $footer the HTML footer.\r
         */\r
-       function setHTMLFooter($footer)\r
-               {\r
+       function setHTMLFooter($footer) {\r
                global $PHPCAS_CLIENT;\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');\r
                }\r
-               if ( gettype($footer) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $footer (should be `string\')');\r
+               if (gettype($footer) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $footer (should be `string\')');\r
                }\r
                $PHPCAS_CLIENT->setHTMLFooter($footer);\r
-               }\r
-       \r
+       }\r
+\r
        /** @} */\r
        // ########################################################################\r
        //  PGT STORAGE\r
@@ -707,7 +719,7 @@ class phpCAS
         * @addtogroup publicPGTStorage\r
         * @{\r
         */\r
-       \r
+\r
        /**\r
         * This method is used to tell phpCAS to store the response of the\r
         * CAS server to PGT requests onto the filesystem. \r
@@ -715,31 +727,29 @@ class phpCAS
         * @param $format the format used to store the PGT's (`plain' and `xml' allowed)\r
         * @param $path the path where the PGT's should be stored\r
         */\r
-       function setPGTStorageFile($format='',\r
-               $path='')\r
-               {\r
-               global $PHPCAS_CLIENT,$PHPCAS_AUTH_CHECK_CALL;\r
-               \r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');\r
-               }\r
-               if ( !$PHPCAS_CLIENT->isProxy() ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');\r
+       function setPGTStorageFile($format = '', $path = '') {\r
+               global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;\r
+\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::proxy()');\r
                }\r
-               if ( $PHPCAS_AUTH_CHECK_CALL['done'] ) {\r
-                       phpCAS::error('this method should only be called before '.$PHPCAS_AUTH_CHECK_CALL['method'].'() (called at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].')');\r
+               if (!$PHPCAS_CLIENT->isProxy()) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::proxy()');\r
                }\r
-               if ( gettype($format) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $format (should be `string\')');\r
+               if ($PHPCAS_AUTH_CHECK_CALL['done']) {\r
+                       phpCAS :: error('this method should only be called before ' . $PHPCAS_AUTH_CHECK_CALL['method'] . '() (called at ' . $PHPCAS_AUTH_CHECK_CALL['file'] . ':' . $PHPCAS_AUTH_CHECK_CALL['line'] . ')');\r
                }\r
-               if ( gettype($path) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $format (should be `string\')');\r
+               if (gettype($format) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $format (should be `string\')');\r
                }\r
-               $PHPCAS_CLIENT->setPGTStorageFile($format,$path);\r
-               phpCAS::traceEnd();\r
+               if (gettype($path) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $format (should be `string\')');\r
                }\r
-       \r
+               $PHPCAS_CLIENT->setPGTStorageFile($format, $path);\r
+               phpCAS :: traceEnd();\r
+       }\r
+\r
        /**\r
         * This method is used to tell phpCAS to store the response of the\r
         * CAS server to PGT requests into a database. \r
@@ -755,51 +765,44 @@ class phpCAS
         * @param $database the name of the database\r
         * @param $table the name of the table storing the data\r
         */\r
-       function setPGTStorageDB($user,\r
-                                                        $password,\r
-                                                        $database_type='',\r
-                                                                $hostname='',\r
-                                                                        $port=0,\r
-                                                                                $database='',\r
-                                                                                        $table='')\r
-               {\r
-               global $PHPCAS_CLIENT,$PHPCAS_AUTH_CHECK_CALL;\r
-               \r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');\r
-               }\r
-               if ( !$PHPCAS_CLIENT->isProxy() ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');\r
+       function setPGTStorageDB($user, $password, $database_type = '', $hostname = '', $port = 0, $database = '', $table = '') {\r
+               global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;\r
+\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::proxy()');\r
                }\r
-               if ( $PHPCAS_AUTH_CHECK_CALL['done'] ) {\r
-                       phpCAS::error('this method should only be called before '.$PHPCAS_AUTH_CHECK_CALL['method'].'() (called at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].')');\r
+               if (!$PHPCAS_CLIENT->isProxy()) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::proxy()');\r
                }\r
-               if ( gettype($user) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $user (should be `string\')');\r
+               if ($PHPCAS_AUTH_CHECK_CALL['done']) {\r
+                       phpCAS :: error('this method should only be called before ' . $PHPCAS_AUTH_CHECK_CALL['method'] . '() (called at ' . $PHPCAS_AUTH_CHECK_CALL['file'] . ':' . $PHPCAS_AUTH_CHECK_CALL['line'] . ')');\r
                }\r
-               if ( gettype($password) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $password (should be `string\')');\r
+               if (gettype($user) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $user (should be `string\')');\r
                }\r
-               if ( gettype($database_type) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $database_type (should be `string\')');\r
+               if (gettype($password) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $password (should be `string\')');\r
                }\r
-               if ( gettype($hostname) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $hostname (should be `string\')');\r
+               if (gettype($database_type) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $database_type (should be `string\')');\r
                }\r
-               if ( gettype($port) != 'integer' ) {\r
-                       phpCAS::error('type mismatched for parameter $port (should be `integer\')');\r
+               if (gettype($hostname) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $hostname (should be `string\')');\r
                }\r
-               if ( gettype($database) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $database (should be `string\')');\r
+               if (gettype($port) != 'integer') {\r
+                       phpCAS :: error('type mismatched for parameter $port (should be `integer\')');\r
                }\r
-               if ( gettype($table) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $table (should be `string\')');\r
+               if (gettype($database) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $database (should be `string\')');\r
                }\r
-               $PHPCAS_CLIENT->setPGTStorageDB($user,$password,$database_type,$hostname,$port,$database,$table);\r
-               phpCAS::traceEnd();\r
+               if (gettype($table) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $table (should be `string\')');\r
                }\r
-       \r
+               $PHPCAS_CLIENT->setPGTStorageDB($user, $password, $database_type, $hostname, $port, $database, $table);\r
+               phpCAS :: traceEnd();\r
+       }\r
+\r
        /** @} */\r
        // ########################################################################\r
        // ACCESS TO EXTERNAL SERVICES\r
@@ -808,7 +811,7 @@ class phpCAS
         * @addtogroup publicServices\r
         * @{\r
         */\r
-       \r
+\r
        /**\r
         * This method is used to access an HTTP[S] service.\r
         * \r
@@ -822,33 +825,32 @@ class phpCAS
         * @return TRUE on success, FALSE otherwise (in this later case, $err_code\r
         * gives the reason why it failed and $output contains an error message).\r
         */\r
-       function serviceWeb($url,&$err_code,&$output)\r
-               {\r
+       function serviceWeb($url, & $err_code, & $output) {\r
                global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;\r
-               \r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');\r
+\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::proxy()');\r
                }\r
-               if ( !$PHPCAS_CLIENT->isProxy() ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');\r
+               if (!$PHPCAS_CLIENT->isProxy()) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::proxy()');\r
                }\r
-               if ( !$PHPCAS_AUTH_CHECK_CALL['done'] ) {\r
-                       phpCAS::error('this method should only be called after the programmer is sure the user has been authenticated (by calling '.__CLASS__.'::checkAuthentication() or '.__CLASS__.'::forceAuthentication()');\r
+               if (!$PHPCAS_AUTH_CHECK_CALL['done']) {\r
+                       phpCAS :: error('this method should only be called after the programmer is sure the user has been authenticated (by calling ' . __CLASS__ . '::checkAuthentication() or ' . __CLASS__ . '::forceAuthentication()');\r
                }\r
-               if ( !$PHPCAS_AUTH_CHECK_CALL['result'] ) {\r
-                       phpCAS::error('authentication was checked (by '.$PHPCAS_AUTH_CHECK_CALL['method'].'() at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].') but the method returned FALSE');\r
+               if (!$PHPCAS_AUTH_CHECK_CALL['result']) {\r
+                       phpCAS :: error('authentication was checked (by ' . $PHPCAS_AUTH_CHECK_CALL['method'] . '() at ' . $PHPCAS_AUTH_CHECK_CALL['file'] . ':' . $PHPCAS_AUTH_CHECK_CALL['line'] . ') but the method returned FALSE');\r
                }\r
-               if ( gettype($url) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $url (should be `string\')');\r
+               if (gettype($url) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $url (should be `string\')');\r
                }\r
-               \r
-               $res = $PHPCAS_CLIENT->serviceWeb($url,$err_code,$output);\r
-               \r
-               phpCAS::traceEnd($res);\r
+\r
+               $res = $PHPCAS_CLIENT->serviceWeb($url, $err_code, $output);\r
+\r
+               phpCAS :: traceEnd($res);\r
                return $res;\r
-               }\r
-       \r
+       }\r
+\r
        /**\r
         * This method is used to access an IMAP/POP3/NNTP service.\r
         * \r
@@ -866,37 +868,36 @@ class phpCAS
         * @return an IMAP stream on success, FALSE otherwise (in this later case, $err_code\r
         * gives the reason why it failed and $err_msg contains an error message).\r
         */\r
-       function serviceMail($url,$service,$flags,&$err_code,&$err_msg,&$pt)\r
-               {\r
+       function serviceMail($url, $service, $flags, & $err_code, & $err_msg, & $pt) {\r
                global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;\r
-               \r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');\r
+\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::proxy()');\r
                }\r
-               if ( !$PHPCAS_CLIENT->isProxy() ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');\r
+               if (!$PHPCAS_CLIENT->isProxy()) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::proxy()');\r
                }\r
-               if ( !$PHPCAS_AUTH_CHECK_CALL['done'] ) {\r
-                       phpCAS::error('this method should only be called after the programmer is sure the user has been authenticated (by calling '.__CLASS__.'::checkAuthentication() or '.__CLASS__.'::forceAuthentication()');\r
+               if (!$PHPCAS_AUTH_CHECK_CALL['done']) {\r
+                       phpCAS :: error('this method should only be called after the programmer is sure the user has been authenticated (by calling ' . __CLASS__ . '::checkAuthentication() or ' . __CLASS__ . '::forceAuthentication()');\r
                }\r
-               if ( !$PHPCAS_AUTH_CHECK_CALL['result'] ) {\r
-                       phpCAS::error('authentication was checked (by '.$PHPCAS_AUTH_CHECK_CALL['method'].'() at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].') but the method returned FALSE');\r
+               if (!$PHPCAS_AUTH_CHECK_CALL['result']) {\r
+                       phpCAS :: error('authentication was checked (by ' . $PHPCAS_AUTH_CHECK_CALL['method'] . '() at ' . $PHPCAS_AUTH_CHECK_CALL['file'] . ':' . $PHPCAS_AUTH_CHECK_CALL['line'] . ') but the method returned FALSE');\r
                }\r
-               if ( gettype($url) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $url (should be `string\')');\r
+               if (gettype($url) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $url (should be `string\')');\r
                }\r
-               \r
-               if ( gettype($flags) != 'integer' ) {\r
-                       phpCAS::error('type mismatched for parameter $flags (should be `integer\')');\r
+\r
+               if (gettype($flags) != 'integer') {\r
+                       phpCAS :: error('type mismatched for parameter $flags (should be `integer\')');\r
                }\r
-               \r
-               $res = $PHPCAS_CLIENT->serviceMail($url,$service,$flags,$err_code,$err_msg,$pt);\r
-               \r
-               phpCAS::traceEnd($res);\r
+\r
+               $res = $PHPCAS_CLIENT->serviceMail($url, $service, $flags, $err_code, $err_msg, $pt);\r
+\r
+               phpCAS :: traceEnd($res);\r
                return $res;\r
-               }\r
-       \r
+       }\r
+\r
        /** @} */\r
        // ########################################################################\r
        //  AUTHENTICATION\r
@@ -905,7 +906,7 @@ class phpCAS
         * @addtogroup publicAuth\r
         * @{\r
         */\r
-       \r
+\r
        /**\r
         * Set the times authentication will be cached before really accessing the CAS server in gateway mode: \r
         * - -1: check only once, and then never again (until you pree login)\r
@@ -914,150 +915,156 @@ class phpCAS
         *\r
         * @param $n an integer.\r
         */\r
-       function setCacheTimesForAuthRecheck($n)\r
-               {\r
+       function setCacheTimesForAuthRecheck($n) {\r
                global $PHPCAS_CLIENT;\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');\r
                }\r
-               if ( gettype($n) != 'integer' ) {\r
-                       phpCAS::error('type mismatched for parameter $header (should be `string\')');\r
+               if (gettype($n) != 'integer') {\r
+                       phpCAS :: error('type mismatched for parameter $header (should be `string\')');\r
                }\r
                $PHPCAS_CLIENT->setCacheTimesForAuthRecheck($n);\r
-               }\r
-       \r
+       }\r
+\r
        /**\r
         * This method is called to check if the user is authenticated (use the gateway feature).\r
         * @return TRUE when the user is authenticated; otherwise FALSE.\r
         */\r
-       function checkAuthentication()\r
-               {\r
+       function checkAuthentication() {\r
                global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;\r
-               \r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');\r
+\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');\r
                }\r
-               \r
+\r
                $auth = $PHPCAS_CLIENT->checkAuthentication();\r
-               \r
+\r
                // store where the authentication has been checked and the result\r
-               $dbg = phpCAS::backtrace();\r
-               $PHPCAS_AUTH_CHECK_CALL = array('done' => TRUE,\r
+               $dbg = phpCAS :: backtrace();\r
+               $PHPCAS_AUTH_CHECK_CALL = array (\r
+                       'done' => TRUE,\r
                        'file' => $dbg[0]['file'],\r
                        'line' => $dbg[0]['line'],\r
-                       'method' => __CLASS__.'::'.__FUNCTION__,\r
-                       'result' => $auth );\r
-               phpCAS::traceEnd($auth);\r
-               return $auth; \r
-               }\r
+                       'method' => __CLASS__ . '::' . __FUNCTION__,\r
+                       'result' => $auth\r
+               );\r
+               phpCAS :: traceEnd($auth);\r
+               return $auth;\r
+       }\r
 \r
        /**\r
         * This method is called to force authentication if the user was not already \r
         * authenticated. If the user is not authenticated, halt by redirecting to \r
         * the CAS server.\r
         */\r
-       function forceAuthentication()\r
-               {\r
+       function forceAuthentication() {\r
                global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;\r
-               \r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');\r
+\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');\r
                }\r
-               \r
+\r
                $auth = $PHPCAS_CLIENT->forceAuthentication();\r
-               \r
+\r
                // store where the authentication has been checked and the result\r
-               $dbg = phpCAS::backtrace();\r
-               $PHPCAS_AUTH_CHECK_CALL = array('done' => TRUE,\r
+               $dbg = phpCAS :: backtrace();\r
+               $PHPCAS_AUTH_CHECK_CALL = array (\r
+                       'done' => TRUE,\r
                        'file' => $dbg[0]['file'],\r
                        'line' => $dbg[0]['line'],\r
-                       'method' => __CLASS__.'::'.__FUNCTION__,\r
-                       'result' => $auth );\r
-               \r
-               if ( !$auth ) {\r
-                       phpCAS::trace('user is not authenticated, redirecting to the CAS server');\r
+                       'method' => __CLASS__ . '::' . __FUNCTION__,\r
+                       'result' => $auth\r
+               );\r
+\r
+               if (!$auth) {\r
+                       phpCAS :: trace('user is not authenticated, redirecting to the CAS server');\r
                        $PHPCAS_CLIENT->forceAuthentication();\r
                } else {\r
-                       phpCAS::trace('no need to authenticate (user `'.phpCAS::getUser().'\' is already authenticated)');\r
+                       phpCAS :: trace('no need to authenticate (user `' . phpCAS :: getUser() . '\' is already authenticated)');\r
                }\r
-               \r
-               phpCAS::traceEnd();\r
-               return $auth; \r
-               }\r
-       \r
+\r
+               phpCAS :: traceEnd();\r
+               return $auth;\r
+       }\r
+\r
        /**\r
         * This method is called to renew the authentication.\r
         **/\r
        function renewAuthentication() {\r
                global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;\r
-               \r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should not be called before'.__CLASS__.'::client() or '.__CLASS__.'::proxy()');\r
+\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should not be called before' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');\r
                }\r
-               \r
+\r
                // store where the authentication has been checked and the result\r
-               $dbg = phpCAS::backtrace();\r
-               $PHPCAS_AUTH_CHECK_CALL = array('done' => TRUE, 'file' => $dbg[0]['file'], 'line' => $dbg[0]['line'], 'method' => __CLASS__.'::'.__FUNCTION__, 'result' => $auth );\r
-               \r
+               $dbg = phpCAS :: backtrace();\r
+               $PHPCAS_AUTH_CHECK_CALL = array (\r
+                       'done' => TRUE,\r
+                       'file' => $dbg[0]['file'],\r
+                       'line' => $dbg[0]['line'],\r
+                       'method' => __CLASS__ . '::' . __FUNCTION__,\r
+                       'result' => $auth\r
+               );\r
+\r
                $PHPCAS_CLIENT->renewAuthentication();\r
-               phpCAS::traceEnd();\r
+               phpCAS :: traceEnd();\r
        }\r
 \r
        /**\r
         * This method has been left from version 0.4.1 for compatibility reasons.\r
         */\r
-       function authenticate()\r
-               {\r
-               phpCAS::error('this method is deprecated. You should use '.__CLASS__.'::forceAuthentication() instead');\r
-               }\r
-       \r
+       function authenticate() {\r
+               phpCAS :: error('this method is deprecated. You should use ' . __CLASS__ . '::forceAuthentication() instead');\r
+       }\r
+\r
        /**\r
         * This method is called to check if the user is authenticated (previously or by\r
         * tickets given in the URL).\r
         *\r
         * @return TRUE when the user is authenticated.\r
         */\r
-       function isAuthenticated()\r
-               {\r
+       function isAuthenticated() {\r
                global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;\r
-               \r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');\r
+\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');\r
                }\r
-               \r
+\r
                // call the isAuthenticated method of the global $PHPCAS_CLIENT object\r
                $auth = $PHPCAS_CLIENT->isAuthenticated();\r
-               \r
+\r
                // store where the authentication has been checked and the result\r
-               $dbg = phpCAS::backtrace();\r
-               $PHPCAS_AUTH_CHECK_CALL = array('done' => TRUE,\r
+               $dbg = phpCAS :: backtrace();\r
+               $PHPCAS_AUTH_CHECK_CALL = array (\r
+                       'done' => TRUE,\r
                        'file' => $dbg[0]['file'],\r
                        'line' => $dbg[0]['line'],\r
-                       'method' => __CLASS__.'::'.__FUNCTION__,\r
-                       'result' => $auth );\r
-               phpCAS::traceEnd($auth);\r
+                       'method' => __CLASS__ . '::' . __FUNCTION__,\r
+                       'result' => $auth\r
+               );\r
+               phpCAS :: traceEnd($auth);\r
                return $auth;\r
-               }\r
-       \r
+       }\r
+\r
        /**\r
         * Checks whether authenticated based on $_SESSION. Useful to avoid\r
         * server calls.\r
         * @return true if authenticated, false otherwise.\r
         * @since 0.4.22 by Brendan Arnold\r
         */\r
-       function isSessionAuthenticated ()\r
-               {\r
+       function isSessionAuthenticated() {\r
                global $PHPCAS_CLIENT;\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');\r
-               }\r
-               return($PHPCAS_CLIENT->isSessionAuthenticated());\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');\r
                }\r
-       \r
+               return ($PHPCAS_CLIENT->isSessionAuthenticated());\r
+       }\r
+\r
        /**\r
         * This method returns the CAS user's login name.\r
         * @warning should not be called only after phpCAS::forceAuthentication()\r
@@ -1065,21 +1072,20 @@ class phpCAS
         *\r
         * @return the login name of the authenticated user\r
         */\r
-       function getUser()\r
-               {\r
+       function getUser() {\r
                global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');\r
                }\r
-               if ( !$PHPCAS_AUTH_CHECK_CALL['done'] ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::forceAuthentication() or '.__CLASS__.'::isAuthenticated()');\r
+               if (!$PHPCAS_AUTH_CHECK_CALL['done']) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::forceAuthentication() or ' . __CLASS__ . '::isAuthenticated()');\r
                }\r
-               if ( !$PHPCAS_AUTH_CHECK_CALL['result'] ) {\r
-                       phpCAS::error('authentication was checked (by '.$PHPCAS_AUTH_CHECK_CALL['method'].'() at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].') but the method returned FALSE');\r
+               if (!$PHPCAS_AUTH_CHECK_CALL['result']) {\r
+                       phpCAS :: error('authentication was checked (by ' . $PHPCAS_AUTH_CHECK_CALL['method'] . '() at ' . $PHPCAS_AUTH_CHECK_CALL['file'] . ':' . $PHPCAS_AUTH_CHECK_CALL['line'] . ') but the method returned FALSE');\r
                }\r
                return $PHPCAS_CLIENT->getUser();\r
-               }\r
-       \r
+       }\r
+\r
        /**\r
         * This method returns the CAS user's login name.\r
         * @warning should not be called only after phpCAS::forceAuthentication()\r
@@ -1087,169 +1093,160 @@ class phpCAS
         *\r
         * @return the login name of the authenticated user\r
         */\r
-       function getAttributes()\r
-               {\r
+       function getAttributes() {\r
                global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');\r
                }\r
-               if ( !$PHPCAS_AUTH_CHECK_CALL['done'] ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::forceAuthentication() or '.__CLASS__.'::isAuthenticated()');\r
+               if (!$PHPCAS_AUTH_CHECK_CALL['done']) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::forceAuthentication() or ' . __CLASS__ . '::isAuthenticated()');\r
                }\r
-               if ( !$PHPCAS_AUTH_CHECK_CALL['result'] ) {\r
-                       phpCAS::error('authentication was checked (by '.$PHPCAS_AUTH_CHECK_CALL['method'].'() at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].') but the method returned FALSE');\r
+               if (!$PHPCAS_AUTH_CHECK_CALL['result']) {\r
+                       phpCAS :: error('authentication was checked (by ' . $PHPCAS_AUTH_CHECK_CALL['method'] . '() at ' . $PHPCAS_AUTH_CHECK_CALL['file'] . ':' . $PHPCAS_AUTH_CHECK_CALL['line'] . ') but the method returned FALSE');\r
                }\r
                return $PHPCAS_CLIENT->getAttributes();\r
+       }\r
+       /**\r
+        * Handle logout requests.\r
+        */\r
+       function handleLogoutRequests($check_client = true, $allowed_clients = false) {\r
+               global $PHPCAS_CLIENT;\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');\r
                }\r
-    /**\r
-     * Handle logout requests.\r
-     */\r
-    function handleLogoutRequests($check_client=true, $allowed_clients=false)\r
-        {\r
-            global $PHPCAS_CLIENT;\r
-            if ( !is_object($PHPCAS_CLIENT) ) {\r
-                phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');\r
-            }\r
-            return($PHPCAS_CLIENT->handleLogoutRequests($check_client, $allowed_clients));\r
-        }\r
-   \r
+               return ($PHPCAS_CLIENT->handleLogoutRequests($check_client, $allowed_clients));\r
+       }\r
+\r
        /**\r
         * This method returns the URL to be used to login.\r
         * or phpCAS::isAuthenticated().\r
         *\r
         * @return the login name of the authenticated user\r
         */\r
-       function getServerLoginURL()\r
-               {\r
+       function getServerLoginURL() {\r
                global $PHPCAS_CLIENT;\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');\r
                }\r
                return $PHPCAS_CLIENT->getServerLoginURL();\r
-               }\r
-       \r
+       }\r
+\r
        /**\r
         * Set the login URL of the CAS server.\r
         * @param $url the login URL\r
         * @since 0.4.21 by Wyman Chan\r
         */\r
-       function setServerLoginURL($url='')\r
-               {\r
+       function setServerLoginURL($url = '') {\r
                global $PHPCAS_CLIENT;\r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after\r
-                               '.__CLASS__.'::client()');\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after\r
+                                                       ' . __CLASS__ . '::client()');\r
                }\r
-               if ( gettype($url) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $url (should be\r
-                       `string\')');\r
+               if (gettype($url) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $url (should be\r
+                                               `string\')');\r
                }\r
                $PHPCAS_CLIENT->setServerLoginURL($url);\r
-               phpCAS::traceEnd();\r
-               }\r
-               \r
-               \r
+               phpCAS :: traceEnd();\r
+       }\r
+\r
        /**\r
         * Set the serviceValidate URL of the CAS server.\r
+        * Used only in CAS 1.0 validations\r
         * @param $url the serviceValidate URL\r
         * @since 1.1.0 by Joachim Fritschi\r
         */\r
-       function setServerServiceValidateURL($url='')\r
-               {\r
+       function setServerServiceValidateURL($url = '') {\r
                global $PHPCAS_CLIENT;\r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after\r
-                               '.__CLASS__.'::client()');\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after\r
+                                                       ' . __CLASS__ . '::client()');\r
                }\r
-               if ( gettype($url) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $url (should be\r
-                       `string\')');\r
+               if (gettype($url) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $url (should be\r
+                                               `string\')');\r
                }\r
                $PHPCAS_CLIENT->setServerServiceValidateURL($url);\r
-               phpCAS::traceEnd();\r
-               }\r
-               \r
-               \r
-        /**\r
+               phpCAS :: traceEnd();\r
+       }\r
+\r
+       /**\r
         * Set the proxyValidate URL of the CAS server.\r
+        * Used for all CAS 2.0 validations\r
         * @param $url the proxyValidate URL\r
         * @since 1.1.0 by Joachim Fritschi\r
         */\r
-       function setServerProxyValidateURL($url='')\r
-               {\r
+       function setServerProxyValidateURL($url = '') {\r
                global $PHPCAS_CLIENT;\r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after\r
-                               '.__CLASS__.'::client()');\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after\r
+                                                       ' . __CLASS__ . '::client()');\r
                }\r
-               if ( gettype($url) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $url (should be\r
-                       `string\')');\r
+               if (gettype($url) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $url (should be\r
+                                               `string\')');\r
                }\r
                $PHPCAS_CLIENT->setServerProxyValidateURL($url);\r
-               phpCAS::traceEnd();\r
-               }\r
-               \r
-     /**\r
+               phpCAS :: traceEnd();\r
+       }\r
+\r
+       /**\r
         * Set the samlValidate URL of the CAS server.\r
         * @param $url the samlValidate URL\r
         * @since 1.1.0 by Joachim Fritschi\r
         */\r
-       function setServerSamlValidateURL($url='')\r
-               {\r
+       function setServerSamlValidateURL($url = '') {\r
                global $PHPCAS_CLIENT;\r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after\r
-                               '.__CLASS__.'::client()');\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after\r
+                                                       ' . __CLASS__ . '::client()');\r
                }\r
-               if ( gettype($url) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $url (should be\r
-                       `string\')');\r
+               if (gettype($url) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $url (should be\r
+                                               `string\')');\r
                }\r
                $PHPCAS_CLIENT->setServerSamlValidateURL($url);\r
-               phpCAS::traceEnd();\r
-               }                       \r
-       \r
+               phpCAS :: traceEnd();\r
+       }\r
+\r
        /**\r
         * This method returns the URL to be used to login.\r
         * or phpCAS::isAuthenticated().\r
         *\r
         * @return the login name of the authenticated user\r
         */\r
-       function getServerLogoutURL()\r
-               {\r
+       function getServerLogoutURL() {\r
                global $PHPCAS_CLIENT;\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should not be called before ' . __CLASS__ . '::client() or ' . __CLASS__ . '::proxy()');\r
                }\r
                return $PHPCAS_CLIENT->getServerLogoutURL();\r
-               }\r
-       \r
+       }\r
+\r
        /**\r
         * Set the logout URL of the CAS server.\r
         * @param $url the logout URL\r
         * @since 0.4.21 by Wyman Chan\r
         */\r
-       function setServerLogoutURL($url='')\r
-               {\r
+       function setServerLogoutURL($url = '') {\r
                global $PHPCAS_CLIENT;\r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after\r
-                               '.__CLASS__.'::client()');\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after\r
+                                                       ' . __CLASS__ . '::client()');\r
                }\r
-               if ( gettype($url) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $url (should be\r
-                       `string\')');\r
+               if (gettype($url) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $url (should be\r
+                                               `string\')');\r
                }\r
                $PHPCAS_CLIENT->setServerLogoutURL($url);\r
-               phpCAS::traceEnd();\r
-               }\r
-       \r
+               phpCAS :: traceEnd();\r
+       }\r
+\r
        /**\r
         * This method is used to logout from CAS.\r
         * @params $params an array that contains the optional url and service parameters that will be passed to the CAS server\r
@@ -1257,66 +1254,70 @@ class phpCAS
         */\r
        function logout($params = "") {\r
                global $PHPCAS_CLIENT;\r
-               phpCAS::traceBegin();\r
+               phpCAS :: traceBegin();\r
                if (!is_object($PHPCAS_CLIENT)) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()');\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::client() or' . __CLASS__ . '::proxy()');\r
                }\r
-               $parsedParams = array();\r
+               $parsedParams = array ();\r
                if ($params != "") {\r
                        if (is_string($params)) {\r
-                               phpCAS::error('method `phpCAS::logout($url)\' is now deprecated, use `phpCAS::logoutWithUrl($url)\' instead');\r
+                               phpCAS :: error('method `phpCAS::logout($url)\' is now deprecated, use `phpCAS::logoutWithUrl($url)\' instead');\r
                        }\r
                        if (!is_array($params)) {\r
-                               phpCAS::error('type mismatched for parameter $params (should be `array\')');\r
+                               phpCAS :: error('type mismatched for parameter $params (should be `array\')');\r
                        }\r
                        foreach ($params as $key => $value) {\r
                                if ($key != "service" && $key != "url") {\r
-                                       phpCAS::error('only `url\' and `service\' parameters are allowed for method `phpCAS::logout($params)\'');\r
+                                       phpCAS :: error('only `url\' and `service\' parameters are allowed for method `phpCAS::logout($params)\'');\r
                                }\r
                                $parsedParams[$key] = $value;\r
                        }\r
                }\r
                $PHPCAS_CLIENT->logout($parsedParams);\r
                // never reached\r
-               phpCAS::traceEnd();\r
+               phpCAS :: traceEnd();\r
        }\r
-       \r
+\r
        /**\r
         * This method is used to logout from CAS. Halts by redirecting to the CAS server.\r
         * @param $service a URL that will be transmitted to the CAS server\r
         */\r
        function logoutWithRedirectService($service) {\r
                global $PHPCAS_CLIENT;\r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()');\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::client() or' . __CLASS__ . '::proxy()');\r
                }\r
                if (!is_string($service)) {\r
-                       phpCAS::error('type mismatched for parameter $service (should be `string\')');\r
+                       phpCAS :: error('type mismatched for parameter $service (should be `string\')');\r
                }\r
-               $PHPCAS_CLIENT->logout(array("service" => $service));\r
+               $PHPCAS_CLIENT->logout(array (\r
+                       "service" => $service\r
+               ));\r
                // never reached\r
-               phpCAS::traceEnd();\r
+               phpCAS :: traceEnd();\r
        }\r
-       \r
+\r
        /**\r
         * This method is used to logout from CAS. Halts by redirecting to the CAS server.\r
         * @param $url a URL that will be transmitted to the CAS server\r
         */\r
        function logoutWithUrl($url) {\r
                global $PHPCAS_CLIENT;\r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()');\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::client() or' . __CLASS__ . '::proxy()');\r
                }\r
                if (!is_string($url)) {\r
-                       phpCAS::error('type mismatched for parameter $url (should be `string\')');\r
+                       phpCAS :: error('type mismatched for parameter $url (should be `string\')');\r
                }\r
-               $PHPCAS_CLIENT->logout(array("url" => $url));\r
+               $PHPCAS_CLIENT->logout(array (\r
+                       "url" => $url\r
+               ));\r
                // never reached\r
-               phpCAS::traceEnd();\r
+               phpCAS :: traceEnd();\r
        }\r
-       \r
+\r
        /**\r
         * This method is used to logout from CAS. Halts by redirecting to the CAS server.\r
         * @param $service a URL that will be transmitted to the CAS server\r
@@ -1324,161 +1325,156 @@ class phpCAS
         */\r
        function logoutWithRedirectServiceAndUrl($service, $url) {\r
                global $PHPCAS_CLIENT;\r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()');\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::client() or' . __CLASS__ . '::proxy()');\r
                }\r
                if (!is_string($service)) {\r
-                       phpCAS::error('type mismatched for parameter $service (should be `string\')');\r
+                       phpCAS :: error('type mismatched for parameter $service (should be `string\')');\r
                }\r
                if (!is_string($url)) {\r
-                       phpCAS::error('type mismatched for parameter $url (should be `string\')');\r
+                       phpCAS :: error('type mismatched for parameter $url (should be `string\')');\r
                }\r
-               $PHPCAS_CLIENT->logout(array("service" => $service, "url" => $url));\r
+               $PHPCAS_CLIENT->logout(array (\r
+                       "service" => $service,\r
+                       "url" => $url\r
+               ));\r
                // never reached\r
-               phpCAS::traceEnd();\r
+               phpCAS :: traceEnd();\r
        }\r
-       \r
+\r
        /**\r
         * Set the fixed URL that will be used by the CAS server to transmit the PGT.\r
         * When this method is not called, a phpCAS script uses its own URL for the callback.\r
         *\r
         * @param $url the URL\r
         */\r
-       function setFixedCallbackURL($url='')\r
-               {\r
+       function setFixedCallbackURL($url = '') {\r
                global $PHPCAS_CLIENT;\r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::proxy()');\r
                }\r
-               if ( !$PHPCAS_CLIENT->isProxy() ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');\r
+               if (!$PHPCAS_CLIENT->isProxy()) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::proxy()');\r
                }\r
-               if ( gettype($url) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $url (should be `string\')');\r
+               if (gettype($url) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $url (should be `string\')');\r
                }\r
                $PHPCAS_CLIENT->setCallbackURL($url);\r
-               phpCAS::traceEnd();\r
-               }\r
-       \r
+               phpCAS :: traceEnd();\r
+       }\r
+\r
        /**\r
         * Set the fixed URL that will be set as the CAS service parameter. When this\r
         * method is not called, a phpCAS script uses its own URL.\r
         *\r
         * @param $url the URL\r
         */\r
-       function setFixedServiceURL($url)\r
-               {\r
+       function setFixedServiceURL($url) {\r
                global $PHPCAS_CLIENT;\r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');\r
-               }  \r
-               if ( gettype($url) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $url (should be `string\')');\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::proxy()');\r
                }\r
-               $PHPCAS_CLIENT->setURL($url);\r
-               phpCAS::traceEnd();\r
+               if (gettype($url) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $url (should be `string\')');\r
                }\r
-       \r
+               $PHPCAS_CLIENT->setURL($url);\r
+               phpCAS :: traceEnd();\r
+       }\r
+\r
        /**\r
         * Get the URL that is set as the CAS service parameter.\r
         */\r
-       function getServiceURL()\r
-               {\r
+       function getServiceURL() {\r
                global $PHPCAS_CLIENT;\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');\r
-               }  \r
-               return($PHPCAS_CLIENT->getURL());\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::proxy()');\r
                }\r
-       \r
+               return ($PHPCAS_CLIENT->getURL());\r
+       }\r
+\r
        /**\r
         * Retrieve a Proxy Ticket from the CAS server.\r
         */\r
-       function retrievePT($target_service,&$err_code,&$err_msg)\r
-               {\r
+       function retrievePT($target_service, & $err_code, & $err_msg) {\r
                global $PHPCAS_CLIENT;\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');\r
-               }  \r
-               if ( gettype($target_service) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $target_service(should be `string\')');\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::proxy()');\r
                }\r
-               return($PHPCAS_CLIENT->retrievePT($target_service,$err_code,$err_msg));\r
+               if (gettype($target_service) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $target_service(should be `string\')');\r
                }\r
-       \r
+               return ($PHPCAS_CLIENT->retrievePT($target_service, $err_code, $err_msg));\r
+       }\r
+\r
        /**\r
         * Set the certificate of the CAS server.\r
         *\r
         * @param $cert the PEM certificate\r
         */\r
-       function setCasServerCert($cert)\r
-               {\r
+       function setCasServerCert($cert) {\r
                global $PHPCAS_CLIENT;\r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()');\r
-               }  \r
-               if ( gettype($cert) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $cert (should be `string\')');\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::client() or' . __CLASS__ . '::proxy()');\r
                }\r
-               $PHPCAS_CLIENT->setCasServerCert($cert);\r
-               phpCAS::traceEnd();\r
+               if (gettype($cert) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $cert (should be `string\')');\r
                }\r
-       \r
+               $PHPCAS_CLIENT->setCasServerCert($cert);\r
+               phpCAS :: traceEnd();\r
+       }\r
+\r
        /**\r
         * Set the certificate of the CAS server CA.\r
         *\r
         * @param $cert the CA certificate\r
         */\r
-       function setCasServerCACert($cert)\r
-               {\r
+       function setCasServerCACert($cert) {\r
                global $PHPCAS_CLIENT;\r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()');\r
-               }  \r
-               if ( gettype($cert) != 'string' ) {\r
-                       phpCAS::error('type mismatched for parameter $cert (should be `string\')');\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::client() or' . __CLASS__ . '::proxy()');\r
                }\r
-               $PHPCAS_CLIENT->setCasServerCACert($cert);\r
-               phpCAS::traceEnd();\r
+               if (gettype($cert) != 'string') {\r
+                       phpCAS :: error('type mismatched for parameter $cert (should be `string\')');\r
                }\r
-       \r
+               $PHPCAS_CLIENT->setCasServerCACert($cert);\r
+               phpCAS :: traceEnd();\r
+       }\r
+\r
        /**\r
         * Set no SSL validation for the CAS server.\r
         */\r
-       function setNoCasServerValidation()\r
-               {\r
+       function setNoCasServerValidation() {\r
                global $PHPCAS_CLIENT;\r
-               phpCAS::traceBegin();\r
-               if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()');\r
-               }  \r
-               $PHPCAS_CLIENT->setNoCasServerValidation();\r
-               phpCAS::traceEnd();\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::client() or' . __CLASS__ . '::proxy()');\r
                }\r
-       \r
+               $PHPCAS_CLIENT->setNoCasServerValidation();\r
+               phpCAS :: traceEnd();\r
+       }\r
+\r
        /** @} */\r
-       \r
-  /**\r
-   * Change CURL options.\r
-   * CURL is used to connect through HTTPS to CAS server\r
-   * @param $key the option key\r
-   * @param $value the value to set\r
-   */\r
-   function setExtraCurlOption($key, $value)\r
-               {\r
-                 global $PHPCAS_CLIENT;\r
-                 phpCAS::traceBegin();\r
-                 if ( !is_object($PHPCAS_CLIENT) ) {\r
-                       phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()');\r
-                 }  \r
-                 $PHPCAS_CLIENT->setExtraCurlOption($key, $value);\r
-                 phpCAS::traceEnd();\r
+\r
+       /**\r
+        * Change CURL options.\r
+        * CURL is used to connect through HTTPS to CAS server\r
+        * @param $key the option key\r
+        * @param $value the value to set\r
+        */\r
+       function setExtraCurlOption($key, $value) {\r
+               global $PHPCAS_CLIENT;\r
+               phpCAS :: traceBegin();\r
+               if (!is_object($PHPCAS_CLIENT)) {\r
+                       phpCAS :: error('this method should only be called after ' . __CLASS__ . '::client() or' . __CLASS__ . '::proxy()');\r
                }\r
+               $PHPCAS_CLIENT->setExtraCurlOption($key, $value);\r
+               phpCAS :: traceEnd();\r
+       }\r
 \r
 }\r
 \r
@@ -1525,7 +1521,6 @@ class phpCAS
 /** @defgroup publicDebug Debugging\r
  *  @ingroup public */\r
 \r
-\r
 /** @defgroup internal Implementation */\r
 \r
 /** @defgroup internalAuthentication Authentication\r
@@ -1579,37 +1574,37 @@ class phpCAS
 /**\r
  * @example example_simple.php\r
  */\r
- /**\r
 * @example example_proxy.php\r
 */\r
-  /**\r
  * @example example_proxy2.php\r
  */\r
-   /**\r
   * @example example_lang.php\r
   */\r
-    /**\r
    * @example example_html.php\r
    */\r
-     /**\r
     * @example example_file.php\r
     */\r
-      /**\r
      * @example example_db.php\r
      */\r
-       /**\r
       * @example example_service.php\r
       */\r
-        /**\r
        * @example example_session_proxy.php\r
        */\r
-         /**\r
         * @example example_session_service.php\r
         */\r
-          /**\r
          * @example example_gateway.php\r
          */\r
-\r
-\r
-\r
+/**\r
+ * @example example_proxy.php\r
+ */\r
+/**\r
+ * @example example_proxy2.php\r
+ */\r
+/**\r
+ * @example example_lang.php\r
+ */\r
+/**\r
+ * @example example_html.php\r
+ */\r
+/**\r
+ * @example example_file.php\r
+ */\r
+/**\r
+ * @example example_db.php\r
+ */\r
+/**\r
+ * @example example_service.php\r
+ */\r
+/**\r
+ * @example example_session_proxy.php\r
+ */\r
+/**\r
+ * @example example_session_service.php\r
+ */\r
+/**\r
+ * @example example_gateway.php\r
+ */\r
+/**\r
+ * @example example_custom_urls.php\r
+ */\r
 ?>\r