Skip to content

Commit

Permalink
fix: Fix constant usage of the xdebug constant (#1232)
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry authored Nov 28, 2023
1 parent 0e785b5 commit 2944899
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 2944899

Please sign in to comment.