class SimpleRestCreds in Acquia Cloud Site Factory Connector 8
Same name in this branch
- 8 acsf_init/lib/sites/g/SimpleRest.php \Acquia\SimpleRest\SimpleRestCreds
- 8 acsf_init/lib/cloud_hooks/common/pre-web-activate/000-acquia-deployment.php \SimpleRestCreds
Same name and namespace in other branches
Hierarchy
- class \SimpleRestCreds
Expanded class hierarchy of SimpleRestCreds
File
- acsf_init/
lib/ cloud_hooks/ common/ pre-web-activate/ 000-acquia-deployment.php, line 278 - This script is responsible for deploying theme files on each webnode.
View source
class SimpleRestCreds {
// phpcs:enable
/**
* The username to be used to contact Site Factory.
*
* @var string
*/
public $name;
/**
* The password to be used to contact Site Factory.
*
* @var string
*/
public $password;
/**
* The URL of the Site Factory.
*
* @var string
*/
public $url;
/**
* Creates a new instance of SimpleRestCreds.
*
* @param string $name
* The username to be used to contact Site Factory.
* @param string $password
* The password to be used to contact Site Factory.
* @param string $url
* The url of the Site Factory.
*/
public function __construct($name, $password, $url) {
$this->name = $name;
$this->password = $password;
$this->url = $url;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SimpleRestCreds:: |
public | property | The username to be used to contact Site Factory. | |
SimpleRestCreds:: |
public | property | The password to be used to contact Site Factory. | |
SimpleRestCreds:: |
public | property | The URL of the Site Factory. | |
SimpleRestCreds:: |
public | function | Creates a new instance of SimpleRestCreds. |