Skip to content

Commit

Permalink
Fix private call generating php warning and no logout handling (#352)
Browse files Browse the repository at this point in the history
see PR #311 on post #311 (comment)
  • Loading branch information
jgribonvald authored Nov 8, 2020
1 parent 84314ea commit 20d31f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/CAS/Request/CurlRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public function initAndConfigure()
*
* @return void
*/
private function _storeResponseBody ($body)
public function _storeResponseBody ($body)
{
$this->storeResponseBody($body);
}
Expand All @@ -192,7 +192,7 @@ private function _storeResponseBody ($body)
*
* @return int
*/
private function _curlReadHeaders ($ch, $header)
public function _curlReadHeaders ($ch, $header)
{
$this->storeResponseHeader($header);
return strlen($header);
Expand Down

0 comments on commit 20d31f0

Please sign in to comment.