Basho\Riak::getLastRequest PHP 메소드

getLastRequest() 공개 메소드

Accessor for the last request issued to the API. For debugging purposes.
public getLastRequest ( ) : string
리턴 string
    public function getLastRequest()
    {
        return $this->api->getRequest();
    }

Usage Example

예제 #1
0
 /**
  * Gets the request that was issued to the API by this Command.
  *
  * @return string
  */
 public function getRequest()
 {
     return $this->riak->getLastRequest();
 }