Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fix constant usage of the xdebug constant #1232

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Console/Command/Process.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
use KevinGH\Box\Compactor\Placeholder;
use KevinGH\Box\Configuration\Configuration;
use KevinGH\Box\Console\PhpSettingsChecker;
use KevinGH\Box\Constants;
use stdClass;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
Expand All @@ -41,7 +42,6 @@
use function implode;
use function putenv;
use function sprintf;
use const KevinGH\Box\BOX_ALLOW_XDEBUG;

// TODO: replace the PHP-Scoper compactor in order to warn the user about scoping errors
final class Process implements Command
Expand Down Expand Up @@ -86,7 +86,7 @@ public function getConfiguration(): ConsoleConfiguration
public function execute(IO $io): int
{
if ($io->getTypedOption(self::NO_RESTART_OPTION)->asBoolean()) {
putenv(BOX_ALLOW_XDEBUG.'=1');
putenv(Constants::ALLOW_XDEBUG.'=1');
}

PhpSettingsChecker::check($io);
Expand Down