You are here

public function EasyHandle::__get in Auth0 Single Sign On 8.2

File

vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php, line 85

Class

EasyHandle
Represents a cURL easy handle and the data it populates.

Namespace

GuzzleHttp\Handler

Code

public function __get($name) {
  $msg = $name === 'handle' ? 'The EasyHandle has been released' : 'Invalid property: ' . $name;
  throw new \BadMethodCallException($msg);
}