execute() публичный Метод

Execute the Request
public execute ( ) : Response
Результат Response The Response
 /**
  *
  * Execute the Request
  *
  * @return object Response Data
  * @throws InstagramException
  */
 public function execute()
 {
     $response = parent::execute();
     $this->response = $response;
     if ($this->interceptResponse($response)) {
         return null;
     }
     if ($this->throwExceptionIfResponseNotOk() && !$response->isOK() && !$response->isJson()) {
         return $response->getCode();
     }
     $this->instagram->setCookies(array_merge($this->instagram->getCookies(), $response->getCookies()));
     if ($this->parseResponse()) {
         return $this->mapper->map($response->getData(), $this->getResponseObject());
     }
     return $response->getData();
 }