aboutsummaryrefslogtreecommitdiffstats
path: root/build/integration/features/bootstrap/Mail.php
diff options
context:
space:
mode:
Diffstat (limited to 'build/integration/features/bootstrap/Mail.php')
-rw-r--r--build/integration/features/bootstrap/Mail.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/integration/features/bootstrap/Mail.php b/build/integration/features/bootstrap/Mail.php
index 5e5a75fdc26..d28c24730ba 100644
--- a/build/integration/features/bootstrap/Mail.php
+++ b/build/integration/features/bootstrap/Mail.php
@@ -20,7 +20,7 @@ trait Mail {
return;
}
- exec("kill " . $this->fakeSmtpServerPid);
+ exec('kill ' . $this->fakeSmtpServerPid);
$this->invokingTheCommand('config:system:delete mail_smtpport');
}
@@ -33,6 +33,6 @@ trait Mail {
// FakeSMTP uses 2525 instead.
$this->invokingTheCommand('config:system:set mail_smtpport --value=2525 --type integer');
- $this->fakeSmtpServerPid = exec("php features/bootstrap/FakeSMTPHelper.php >/dev/null 2>&1 & echo $!");
+ $this->fakeSmtpServerPid = exec('php features/bootstrap/FakeSMTPHelper.php >/dev/null 2>&1 & echo $!');
}
}