summaryrefslogtreecommitdiffstats
path: root/build/integration/features/bootstrap/CommandLineContext.php
diff options
context:
space:
mode:
Diffstat (limited to 'build/integration/features/bootstrap/CommandLineContext.php')
-rw-r--r--build/integration/features/bootstrap/CommandLineContext.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/integration/features/bootstrap/CommandLineContext.php b/build/integration/features/bootstrap/CommandLineContext.php
index 5bb87c04a94..678cf40351f 100644
--- a/build/integration/features/bootstrap/CommandLineContext.php
+++ b/build/integration/features/bootstrap/CommandLineContext.php
@@ -42,14 +42,14 @@ class CommandLineContext implements \Behat\Behat\Context\Context {
/**
* @Given Maintenance mode is enabled
*/
- public function maintenanceModeIsEnabled() {
+ public function maintenanceModeIsEnabled() {
$this->runOcc(['maintenance:mode', '--on']);
}
/**
* @Then Maintenance mode is disabled
*/
- public function maintenanceModeIsDisabled() {
+ public function maintenanceModeIsDisabled() {
$this->runOcc(['maintenance:mode', '--off']);
}
@@ -82,7 +82,7 @@ class CommandLineContext implements \Behat\Behat\Context\Context {
return null;
}
- usort($foundPaths, function($a, $b) {
+ usort($foundPaths, function ($a, $b) {
return $a['date'] - $b['date'];
});