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\NodeAnalyzer; use PhpParser\Node\Expr; ..
Decoded Output download
<?php
declare (strict_types=1);
namespace Rector\NodeAnalyzer;
use PhpParser\Node\Expr;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Scalar\String_;
use Rector\NodeNameResolver\NodeNameResolver;
final class DefineFuncCallAnalyzer
{
/**
* @readonly
* @var \Rector\NodeNameResolver\NodeNameResolver
*/
private $nodeNameResolver;
public function __construct(NodeNameResolver $nodeNameResolver)
{
$this->nodeNameResolver = $nodeNameResolver;
}
/**
* @param string[] $constants
*/
public function isDefinedWithConstants(Expr $expr, array $constants) : bool
{
if (!$expr instanceof FuncCall) {
return \false;
}
if (!$this->nodeNameResolver->isName($expr, 'defined')) {
return \false;
}
if ($expr->isFirstClassCallable()) {
return \false;
}
$firstArg = $expr->getArgs()[0];
if (!$firstArg->value instanceof String_) {
return \false;
}
$string = $firstArg->value;
return \in_array($string->value, $constants, \true);
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare (strict_types=1);
namespace Rector\NodeAnalyzer;
use PhpParser\Node\Expr;
use PhpParser\Node\Expr\FuncCall;
use PhpParser\Node\Scalar\String_;
use Rector\NodeNameResolver\NodeNameResolver;
final class DefineFuncCallAnalyzer
{
/**
* @readonly
* @var \Rector\NodeNameResolver\NodeNameResolver
*/
private $nodeNameResolver;
public function __construct(NodeNameResolver $nodeNameResolver)
{
$this->nodeNameResolver = $nodeNameResolver;
}
/**
* @param string[] $constants
*/
public function isDefinedWithConstants(Expr $expr, array $constants) : bool
{
if (!$expr instanceof FuncCall) {
return \false;
}
if (!$this->nodeNameResolver->isName($expr, 'defined')) {
return \false;
}
if ($expr->isFirstClassCallable()) {
return \false;
}
$firstArg = $expr->getArgs()[0];
if (!$firstArg->value instanceof String_) {
return \false;
}
$string = $firstArg->value;
return \in_array($string->value, $constants, \true);
}
}
Function Calls
None |
Stats
MD5 | 4346e3287bd2a47fca8a4b492256195b |
Eval Count | 0 |
Decode Time | 107 ms |