Home
last modified time | relevance | path

Searched refs:attributeArray (Results 1 – 1 of 1) sorted by relevance

/plugin/authssocas/vendor/apereo/phpcas/source/CAS/
H A DClient.php3898 private function _addAttributeToArray(array &$attributeArray, $name, $value) argument
3901 if (isset($attributeArray[$name])) {
3903 if (!is_array($attributeArray[$name])) {
3904 $existingValue = $attributeArray[$name];
3905 $attributeArray[$name] = array($existingValue);
3908 $attributeArray[$name][] = trim($value);
3910 $attributeArray[$name] = trim($value);