You are here

public function AcsfMessage::getResponseCode in Acquia Cloud Site Factory Connector 8.2

Same name and namespace in other branches
  1. 8 src/AcsfMessage.php \Drupal\acsf\AcsfMessage::getResponseCode()

Retrieves the response code.

File

src/AcsfMessage.php, line 175

Class

AcsfMessage
AcsfMessage.

Namespace

Drupal\acsf

Code

public function getResponseCode() {
  if (empty($this->response)) {
    return FALSE;
  }
  return $this->response->code;
}