public function FnStream::__get in Lockr 7.3
Lazily determine which methods are not implemented.
Throws
\BadMethodCallException
File
- vendor/
guzzlehttp/ psr7/ src/ FnStream.php, line 39
Class
- FnStream
- Compose stream implementations based on a hash of functions.
Namespace
GuzzleHttp\Psr7Code
public function __get($name) {
throw new \BadMethodCallException(str_replace('_fn_', '', $name) . '() is not implemented in the FnStream');
}