![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/lusitanian/oauth/src/OAuth/Common/Http/Client/ |
<?php namespace OAuth\Common\Http\Client; /** * Abstract HTTP client */ abstract class AbstractClient implements ClientInterface { /** * @var string The user agent string passed to services */ protected $userAgent; /** * @var int The maximum number of redirects */ protected $maxRedirects = 5; /** * @var int The maximum timeout */ protected $timeout = 15; /** * Creates instance * * @param string $userAgent The UA string the client will use */ public function __construct($userAgent = 'PHPoAuthLib') { $this->userAgent = $userAgent; } /** * @param int $redirects Maximum redirects for client * * @return ClientInterface */ public function setMaxRedirects($redirects) { $this->maxRedirects = $redirects; return $this; } /** * @param int $timeout Request timeout time for client in seconds * * @return ClientInterface */ public function setTimeout($timeout) { $this->timeout = $timeout; return $this; } /** * @param array $headers */ public function normalizeHeaders(&$headers) { // Normalize headers array_walk( $headers, function (&$val, &$key) { $key = ucfirst(strtolower($key)); $val = ucfirst(strtolower($key)) . ': ' . $val; } ); } }