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); namespace Rector\DowngradePhp80\Rector\Catch_; use PhpPa..
Decoded Output download
<?php
declare (strict_types=1);
namespace Rector\DowngradePhp80\Rector\Catch_;
use PhpParser\Node;
use PhpParser\Node\Expr\Variable;
use PhpParser\Node\Stmt\Catch_;
use PHPStan\Analyser\Scope;
use Rector\Naming\Naming\VariableNaming;
use Rector\Rector\AbstractScopeAwareRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @changelog https://wiki.php.net/rfc/non-capturing_catches
*
* @see \Rector\Tests\DowngradePhp80\Rector\Catch_\DowngradeNonCapturingCatchesRector\DowngradeNonCapturingCatchesRectorTest
*/
final class DowngradeNonCapturingCatchesRector extends AbstractScopeAwareRector
{
/**
* @readonly
* @var \Rector\Naming\Naming\VariableNaming
*/
private $variableNaming;
public function __construct(VariableNaming $variableNaming)
{
$this->variableNaming = $variableNaming;
}
public function getRuleDefinition() : RuleDefinition
{
return new RuleDefinition('Downgrade catch () without variable to one', [new CodeSample(<<<'CODE_SAMPLE'
class SomeClass
{
public function run()
{
try {
// code
} catch (\Exception) {
// error
}
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
class SomeClass
{
public function run()
{
try {
// code
} catch (\Exception $exception) {
// error
}
}
}
CODE_SAMPLE
)]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [Catch_::class];
}
/**
* @param Catch_ $node
*/
public function refactorWithScope(Node $node, Scope $scope) : ?Node
{
if ($node->var instanceof Variable) {
return null;
}
$exceptionVarName = $this->variableNaming->createCountedValueName('exception', $scope);
$node->var = new Variable($exceptionVarName);
return $node;
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare (strict_types=1);
namespace Rector\DowngradePhp80\Rector\Catch_;
use PhpParser\Node;
use PhpParser\Node\Expr\Variable;
use PhpParser\Node\Stmt\Catch_;
use PHPStan\Analyser\Scope;
use Rector\Naming\Naming\VariableNaming;
use Rector\Rector\AbstractScopeAwareRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @changelog https://wiki.php.net/rfc/non-capturing_catches
*
* @see \Rector\Tests\DowngradePhp80\Rector\Catch_\DowngradeNonCapturingCatchesRector\DowngradeNonCapturingCatchesRectorTest
*/
final class DowngradeNonCapturingCatchesRector extends AbstractScopeAwareRector
{
/**
* @readonly
* @var \Rector\Naming\Naming\VariableNaming
*/
private $variableNaming;
public function __construct(VariableNaming $variableNaming)
{
$this->variableNaming = $variableNaming;
}
public function getRuleDefinition() : RuleDefinition
{
return new RuleDefinition('Downgrade catch () without variable to one', [new CodeSample(<<<'CODE_SAMPLE'
class SomeClass
{
public function run()
{
try {
// code
} catch (\Exception) {
// error
}
}
}
CODE_SAMPLE
, <<<'CODE_SAMPLE'
class SomeClass
{
public function run()
{
try {
// code
} catch (\Exception $exception) {
// error
}
}
}
CODE_SAMPLE
)]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes() : array
{
return [Catch_::class];
}
/**
* @param Catch_ $node
*/
public function refactorWithScope(Node $node, Scope $scope) : ?Node
{
if ($node->var instanceof Variable) {
return null;
}
$exceptionVarName = $this->variableNaming->createCountedValueName('exception', $scope);
$node->var = new Variable($exceptionVarName);
return $node;
}
}
Function Calls
None |
Stats
MD5 | 1ec2dbde580d02c594c3a06d82f15558 |
Eval Count | 0 |
Decode Time | 76 ms |