Skip to content

Commit 4a62dfc

Browse files
committed
Fix whitespace issues
1 parent 70ad5f2 commit 4a62dfc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Context/FeatureContext.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public static function get_framework_dir() {
166166
private static function get_process_env_variables() {
167167
// Ensure we're using the expected `wp` binary.
168168
$bin_path = getenv( 'WP_CLI_BIN_DIR' ) ?: realpath( self::get_vendor_dir() . '/bin' );
169-
wp_cli_behat_env_debug( "WP-CLI binary path: {$bin_path}");
169+
wp_cli_behat_env_debug( "WP-CLI binary path: {$bin_path}" );
170170

171171
if ( ! file_exists( "{$bin_path}/wp" ) ) {
172172
wp_cli_behat_env_debug( "WARNING: No file named 'wp' found in the provided/detected path." );
@@ -214,7 +214,7 @@ private static function get_process_env_variables() {
214214
}
215215

216216
// Dump environment for debugging purposes, but before adding the GitHub token.
217-
wp_cli_behat_env_debug( "Environment:" );
217+
wp_cli_behat_env_debug( 'Environment:' );
218218
foreach ( $env as $key => $value ) {
219219
wp_cli_behat_env_debug( " [{$key}] => {$value}" );
220220
}
@@ -298,7 +298,7 @@ public static function prepare( BeforeSuiteScope $scope ) {
298298
echo $result->stdout;
299299
echo PHP_EOL;
300300

301-
if ( getenv('WP_CLI_TEST_DEBUG_BEHAT_ENV' ) ) {
301+
if ( getenv( 'WP_CLI_TEST_DEBUG_BEHAT_ENV' ) ) {
302302
exit;
303303
}
304304

0 commit comments

Comments
 (0)