You appear to be a bot. Output may be restricted
Description
Allow decorators to implement custom methods
Usage
$mixed = __call( $method, $args );
Parameters
- $method
- ( string ) required – Missing method name
- $args
- ( array ) required – Method arguments
Returns
mixed
Source
File name: wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/StreamDecoratorTrait.php
Lines:
1 to 6 of 6
public function __call($method, array $args) { $result = \call_user_func_array([$this->stream, $method], $args); // Always return the wrapped object if the result is a return $this return $result === $this->stream ? $this : $result; }