Skip to content

Commit

Permalink
fix: private call generating php Warning and no logout handling
Browse files Browse the repository at this point in the history
  • Loading branch information
jgribonvald committed Sep 22, 2020
1 parent 2c127af commit c7b649f
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 c7b649f

Please sign in to comment.