You are here

function Provision_Config_Certificate_SelfSigned::unlink in Aegir HTTPS 7.3

Override the unlink method.

Overrides Provision_Config_Certificate::unlink

File

submodules/self_signed/drush/Provision/Config/Certificate/SelfSigned.php, line 38

Class

Provision_Config_Certificate_SelfSigned
A configuration file class.

Code

function unlink() {
  parent::unlink();

  // Remove the config from a remote server if necessary.
  $this->data['server']
    ->sync($this
    ->filename());
}