Skip to content

Commit 2073f41

Browse files
phy25leo108
authored andcommitted
Fix code styling
1 parent da17740 commit 2073f41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Responses/XmlAuthenticationSuccessResponse.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ public function setAttributes($attributes)
4949
$this->removeByXPath($authNode, 'cas:attributes');
5050
$attributesNode = $authNode->addChild('cas:attributes');
5151
foreach ($attributes as $key => $value) {
52-
$value_arr = (array) $value;
53-
foreach($value_arr as $v){
52+
$valueArr = (array) $value;
53+
foreach($valueArr as $v){
5454
$str = $this->stringify($v);
5555
if (is_string($str)) {
5656
$attributesNode->addChild('cas:'.$key, $str);

0 commit comments

Comments
 (0)