PATH:
home
/
thebhoeo
/
.trash
/
wpforms-lite-pro
/
vendor_prefixed
/
apimatic
/
core
/
src
/
Logger
/
Configuration
<?php declare (strict_types=1); namespace WPForms\Vendor\Core\Logger\Configuration; class RequestConfiguration extends BaseHttpLoggingConfiguration { private $includeQueryInPath; /** * Construct an instance of RequestConfig for logging * * @param bool $includeQueryInPath * @param bool $logBody * @param bool $logHeaders * @param string[] $headersToInclude * @param string[] $headersToExclude * @param string[] $headersToUnmask */ public function __construct(bool $includeQueryInPath, bool $logBody, bool $logHeaders, array $headersToInclude, array $headersToExclude, array $headersToUnmask) { parent::__construct($logBody, $logHeaders, $headersToInclude, $headersToExclude, $headersToUnmask); $this->includeQueryInPath = $includeQueryInPath; } /** * Indicates whether to include query parameters in the logged path. */ public function shouldIncludeQueryInPath() : bool { return $this->includeQueryInPath; } }
[-] LoggingConfiguration.php
[edit]
[-] BaseHttpLoggingConfiguration.php
[edit]
[-] RequestConfiguration.php
[edit]
[+]
..
[-] ResponseConfiguration.php
[edit]