Fxmlrpc\AbstractDecorator::call PHP Method

call() public method

public call ( $methodName, array $arguments = [] )
$arguments array
    public function call($methodName, array $arguments = [])
    {
        return $this->wrapped->call($methodName, $arguments);
    }

Usage Example

Beispiel #1
0
 /** {@inheritdoc} */
 public function call($methodName, array $arguments = [])
 {
     $startTime = microtime(true);
     $result = parent::call($methodName, $arguments);
     $this->timer->recordTiming(microtime(true) - $startTime, $methodName, $arguments);
     return $result;
 }
All Usage Examples Of Fxmlrpc\AbstractDecorator::call