Skip to content

Commit

Permalink
Merge pull request reservix#1 from reservix/php82
Browse files Browse the repository at this point in the history
Remove usage of undefined properties to allow code to work with PHP 8.2
  • Loading branch information
mfruehauf authored May 9, 2023
2 parents 7b09c89 + a17fdb2 commit 763f168
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions lib/PayPalHttp/HttpClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ function __construct(Environment $environment)
{
$this->environment = $environment;
$this->encoder = new Encoder();
$this->curlCls = Curl::class;
}

/**
Expand Down Expand Up @@ -156,11 +155,6 @@ protected function getCACertFilePath()
return null;
}

protected function setCurl(Curl $curl)
{
$this->curl = $curl;
}

protected function setEncoder(Encoder $encoder)
{
$this->encoder = $encoder;
Expand Down

0 comments on commit 763f168

Please sign in to comment.