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 $finder = PhpCsFixer\Finder::create() ->exclude('docs') ->exclude('.github')..
Decoded Output download
<?php
$finder = PhpCsFixer\Finder::create()
->exclude('docs')
->exclude('.github')
// ->notPath('src/Symfony/Component/Translation/Tests/fixtures/resources.php')
->in(__DIR__)
;
$config = new PhpCsFixer\Config();
return $config->setRules([
'@PSR12' => true,
'strict_param' => true,
'array_syntax' => ['syntax' => 'short']
])
->setFinder($finder)
;
?>
Did this file decode correctly?
Original Code
<?php
$finder = PhpCsFixer\Finder::create()
->exclude('docs')
->exclude('.github')
// ->notPath('src/Symfony/Component/Translation/Tests/fixtures/resources.php')
->in(__DIR__)
;
$config = new PhpCsFixer\Config();
return $config->setRules([
'@PSR12' => true,
'strict_param' => true,
'array_syntax' => ['syntax' => 'short']
])
->setFinder($finder)
;
Function Calls
None |
Stats
MD5 | f35c46e493216f065bb8f4b8463f11d2 |
Eval Count | 0 |
Decode Time | 100 ms |