Passed
Push — master ( a4d20f...96a46d )
by leo
59s
created
src/Services/PGTCaller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
                 'query'  => array_merge($originQuery, $query),
47 47
                 'verify' => config('cas.verify_ssl', true),
48 48
             ];
49
-            $res    = $this->client->get($pgtUrl, $option);
49
+            $res = $this->client->get($pgtUrl, $option);
50 50
 
51 51
             return $res->getStatusCode() == 200;
52 52
         } catch (\Exception $e) {
Please login to merge, or discard this patch.
src/Responses/XmlAuthenticationSuccessResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
         $attributesNode = $authNode->addChild('cas:attributes');
51 51
         foreach ($attributes as $key => $value) {
52 52
             $valueArr = (array) $value;
53
-            foreach($valueArr as $v){
53
+            foreach ($valueArr as $v) {
54 54
                 $str = $this->stringify($v);
55 55
                 if (is_string($str)) {
56 56
                     $attributesNode->addChild('cas:'.$key, $str);
Please login to merge, or discard this patch.