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 declare(strict_types=1); use Symplify\EasyCodingStandard\Application\Version\Stati..
Decoded Output download
<?php
declare(strict_types=1);
use Symplify\EasyCodingStandard\Application\Version\StaticVersionResolver;
use Symplify\EasyCodingStandard\Config\ECSConfig;
use Symplify\EasyCodingStandard\ValueObject\Option;
$cacheDirectory = sys_get_temp_dir() . '/changed_files_detector';
if (StaticVersionResolver::PACKAGE_VERSION !== '@package_version@') {
$cacheDirectory .= '_' . StaticVersionResolver::PACKAGE_VERSION;
}
// $ecsConfig->parallel();
// make cache individual per project
$cacheNamespace = str_replace(DIRECTORY_SEPARATOR, '_', getcwd());
return ECSConfig::configure()
->withParallel()
->withSpacing(indentation: Option::INDENTATION_SPACES, lineEnding: PHP_EOL)
->withCache(directory: $cacheDirectory, namespace: $cacheNamespace)
->withFileExtensions(['php'])
->withSkip([])
->withPaths([])
->withRealPathReporting(false)
;
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
use Symplify\EasyCodingStandard\Application\Version\StaticVersionResolver;
use Symplify\EasyCodingStandard\Config\ECSConfig;
use Symplify\EasyCodingStandard\ValueObject\Option;
$cacheDirectory = sys_get_temp_dir() . '/changed_files_detector';
if (StaticVersionResolver::PACKAGE_VERSION !== '@package_version@') {
$cacheDirectory .= '_' . StaticVersionResolver::PACKAGE_VERSION;
}
// $ecsConfig->parallel();
// make cache individual per project
$cacheNamespace = str_replace(DIRECTORY_SEPARATOR, '_', getcwd());
return ECSConfig::configure()
->withParallel()
->withSpacing(indentation: Option::INDENTATION_SPACES, lineEnding: PHP_EOL)
->withCache(directory: $cacheDirectory, namespace: $cacheNamespace)
->withFileExtensions(['php'])
->withSkip([])
->withPaths([])
->withRealPathReporting(false)
;
Function Calls
None |
Stats
MD5 | 48f2d493f9b159ec8a008fae9d1ff98d |
Eval Count | 0 |
Decode Time | 106 ms |