Explorar el Código

Documented parse_identifier()

Brendan Abolivier hace 8 años
padre
commit
a12b342091
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  1. 7
    0
      auth.php

+ 7
- 0
auth.php Ver fichero

@@ -131,6 +131,13 @@ class auth_plugin_macaroons extends auth_plugin_base {
131 131
 		}
132 132
 	}
133 133
 
134
+
135
+	/*
136
+	* Parses the macaroon identifier based on the user's config
137
+	*
138
+	* @param array $identifier The macaroon identifier split based on the separator
139
+	* @return array A map linking a field with an user value
140
+	*/
134 141
 	function parse_identifier($identifier) {
135 142
 		$placeholders = explode(";", $this->config->identifier_format);
136 143