diff --git a/packages/press/src/Commands/InstallWordPress.php b/packages/press/src/Commands/InstallWordPress.php index b50be8c3b..314e78768 100644 --- a/packages/press/src/Commands/InstallWordPress.php +++ b/packages/press/src/Commands/InstallWordPress.php @@ -307,14 +307,14 @@ public function wpInstall(): void $env = $this->getDotenv(); -ยด $wpPath = base_path(trim($env['WP_PATH'], '/')); + $wpPath = base_path(trim($env['WP_PATH'], '/')); if (! File::exists($wpPath.'/wp-config.php')) { alert('wp-config.php not found! Please ensure the file is created and configured.'); exit(1); } foreach ($env as $key => $value) { - info("$key: " . (is_bool($value) ? ($value ? 'true' : 'false') : $value)); + info("$key: ".(is_bool($value) ? ($value ? 'true' : 'false') : $value)); } $siteUrl = $env['APP_URL'].$env['WP_SLUG'];