public function TransferStats::getHandlerStat in Auth0 Single Sign On 8.2
Get a specific handler statistic from the handler by name.
Parameters
string $stat Handler specific transfer stat to retrieve.:
Return value
mixed|null
File
- vendor/
guzzlehttp/ guzzle/ src/ TransferStats.php, line 120
Class
- TransferStats
- Represents data at the point after it was transferred either successfully or after a network error.
Namespace
GuzzleHttpCode
public function getHandlerStat($stat) {
return isset($this->handlerStats[$stat]) ? $this->handlerStats[$stat] : null;
}