function Provision_Config_Example::unlink in Hosting 7.4
Same name and namespace in other branches
- 7.3 example/example_service/drush/Provision/Config/Example.php \Provision_Config_Example::unlink()
Override the unlink method.
File
- example/
example_service/ drush/ Provision/ Config/ Example.php, line 38
Class
- Provision_Config_Example
- A basic configuration file class.
Code
function unlink() {
parent::unlink();
// Remove the config from a remote server if necessary.
$this->data['server']
->sync($this
->filename());
}