Skip to content
This repository was archived by the owner on Jun 25, 2025. It is now read-only.
Open
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
12 changes: 6 additions & 6 deletions src/Core/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function doRun(InputInterface $input, OutputInterface $output)
$projectRoot = $this->projectRoot;
$output->writeln(
"OXID project root is found at $projectRoot",
OutputInterface::VERBOSITY_VERBOSE
OutputInterface::VERBOSITY_DEBUG
);
chdir($projectRoot);

Expand All @@ -69,14 +69,14 @@ public function doRun(InputInterface $input, OutputInterface $output)
$_SERVER['HTTP_HOST'] = 'localhost';
$output->writeln(
"collecting comands...",
OutputInterface::VERBOSITY_VERBOSE
OutputInterface::VERBOSITY_DEBUG
);
$commandCollector = new CommandCollector();
$application = $this;
$commands = $commandCollector->getAllCommands();
$output->writeln(
"commands collected",
OutputInterface::VERBOSITY_VERBOSE
OutputInterface::VERBOSITY_DEBUG
);
foreach ($commands as $command) {
try {
Expand All @@ -87,7 +87,7 @@ public function doRun(InputInterface $input, OutputInterface $output)
}
$output->writeln(
"commands added",
OutputInterface::VERBOSITY_VERBOSE
OutputInterface::VERBOSITY_DEBUG
);
parent::doRun($input, $output);
}
Expand All @@ -108,7 +108,7 @@ public function loadBootstrap(InputInterface $input, OutputInterface $output)

$output->writeln(
"Loading OXID bootstrap...",
OutputInterface::VERBOSITY_VERBOSE
OutputInterface::VERBOSITY_DEBUG
);
$possiblePathsForBootstrap = [
$this->projectRoot . '/source/bootstrap.php',
Expand All @@ -132,7 +132,7 @@ public function loadBootstrap(InputInterface $input, OutputInterface $output)
}
$output->writeln(
"OXID bootstrap done",
OutputInterface::VERBOSITY_VERBOSE
OutputInterface::VERBOSITY_DEBUG
);
return;
}
Expand Down