Skip to content

Commit 20d31f0

Browse files
authored
Fix private call generating php warning and no logout handling (#352)
see PR #311 on post #311 (comment)
1 parent 84314ea commit 20d31f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/CAS/Request/CurlRequest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public function initAndConfigure()
179179
*
180180
* @return void
181181
*/
182-
private function _storeResponseBody ($body)
182+
public function _storeResponseBody ($body)
183183
{
184184
$this->storeResponseBody($body);
185185
}
@@ -192,7 +192,7 @@ private function _storeResponseBody ($body)
192192
*
193193
* @return int
194194
*/
195-
private function _curlReadHeaders ($ch, $header)
195+
public function _curlReadHeaders ($ch, $header)
196196
{
197197
$this->storeResponseHeader($header);
198198
return strlen($header);

0 commit comments

Comments
 (0)