| Current Path : /var/www/www.indacotrentino.com/www/vendor/codeception/codeception/src/Codeception/Util/ |
| Current File : /var/www/www.indacotrentino.com/www/vendor/codeception/codeception/src/Codeception/Util/Debug.php |
<?php
declare(strict_types=1);
namespace Codeception\Util;
use Codeception\Command\Console;
use Codeception\Lib\Console\Output;
use Codeception\Lib\PauseShell;
use Symfony\Component\Console\Helper\QuestionHelper;
use Symfony\Component\Console\Input\ArgvInput;
use Symfony\Component\Console\Question\ConfirmationQuestion;
/**
* This class is used only when Codeception is executed in `--debug` mode.
* In other cases method of this class won't be seen.
*/
class Debug
{
protected static ?Output $output = null;
public static function setOutput(Output $output): void
{
self::$output = $output;
}
/**
* Prints data to screen. Message can be any time of data
*/
public static function debug(mixed $message): void
{
if (!self::$output) {
return;
}
self::$output->debug($message);
}
public static function isEnabled(): bool
{
return (bool)self::$output;
}
public static function pause(array $vars = []): void
{
if (!self::isEnabled()) {
return;
}
$pauseShell = new PauseShell();
$psy = $pauseShell->getShell();
$psy->setScopeVariables($vars);
$backtrace = debug_backtrace(DEBUG_BACKTRACE_PROVIDE_OBJECT, 3);
foreach ($backtrace as $backtraceStep) {
$class = $backtraceStep['class'] ?? null;
$fn = $backtraceStep['function'] ?? null;
if ($class === Debug::class && $fn === 'pause') {
continue;
}
if ($fn === 'codecept_pause' && !$class) {
continue;
}
if (!isset($backtraceStep['object'])) {
continue;
}
$pauseShell->addMessage('Use $this-> to access current object');
$psy->setBoundObject($backtraceStep['object']);
break;
}
$psy->run();
}
public static function confirm($question)
{
if (!self::$output) {
return;
}
$questionHelper = new QuestionHelper();
return $questionHelper->ask(new ArgvInput(), self::$output, new ConfirmationQuestion($question));
}
}