Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * This file is part of the reliforp/reli-prof package. * * (c) sji <sji@sj-i..
Decoded Output download
<?php
/**
* This file is part of the reliforp/reli-prof package.
*
* (c) sji <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Reli\Inspector\Output\TraceOutput;
use Reli\Inspector\Output\OutputChannel\ConsoleOutputChannel;
use Reli\Inspector\Output\TraceFormatter\Templated\TraceFormatterFactory;
use Reli\Inspector\Settings\OutputSettings\OutputSettings;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Output\StreamOutput;
class TraceOutputFactory
{
public function __construct(
private TraceFormatterFactory $trace_formatter_factory,
) {
}
public function fromSettingsAndConsoleOutput(
OutputInterface $output,
OutputSettings $output_settings,
): TraceOutput {
if (!is_null($output_settings->output_path)) {
$output = new StreamOutput(
fopen($output_settings->output_path, 'w', false)
);
}
return new FormattedTraceOutput(
new ConsoleOutputChannel($output),
$this->trace_formatter_factory->createFromSettings(
$output_settings
)
);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* This file is part of the reliforp/reli-prof package.
*
* (c) sji <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Reli\Inspector\Output\TraceOutput;
use Reli\Inspector\Output\OutputChannel\ConsoleOutputChannel;
use Reli\Inspector\Output\TraceFormatter\Templated\TraceFormatterFactory;
use Reli\Inspector\Settings\OutputSettings\OutputSettings;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Output\StreamOutput;
class TraceOutputFactory
{
public function __construct(
private TraceFormatterFactory $trace_formatter_factory,
) {
}
public function fromSettingsAndConsoleOutput(
OutputInterface $output,
OutputSettings $output_settings,
): TraceOutput {
if (!is_null($output_settings->output_path)) {
$output = new StreamOutput(
fopen($output_settings->output_path, 'w', false)
);
}
return new FormattedTraceOutput(
new ConsoleOutputChannel($output),
$this->trace_formatter_factory->createFromSettings(
$output_settings
)
);
}
}
Function Calls
None |
Stats
MD5 | 1c2236c955cc7073cb00a8cb6f645db1 |
Eval Count | 0 |
Decode Time | 85 ms |