getCallByRequestId() public method

Get call by request ID
public getCallByRequestId ( integer $requestId ) : Call | boolean
$requestId integer
return Call | boolean
Exemplo n.º 1
0
 public function testGetCallWithRequestIdFailure()
 {
     $call = $this->_proc->getCallByRequestId(0);
     $this->assertFalse($call);
 }