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 namespace StubTests\Model; use RuntimeException; use function array_key_exists; us..
Decoded Output download
<?php
namespace StubTests\Model;
use RuntimeException;
use function array_key_exists;
use function count;
abstract class BasePHPClass extends BasePHPElement
{
/**
* @var PHPMethod[]
*/
public $methods = [];
/**
* @var PHPConst[]
*/
public $constants = [];
public $isFinal = false;
public function addConstant(PHPConst $parsedConstant)
{
if (isset($parsedConstant->name)) {
if (array_key_exists($parsedConstant->name, $this->constants)) {
$amount = count(array_filter(
$this->constants,
function (PHPConst $nextConstant) use ($parsedConstant) {
return $nextConstant->name === $parsedConstant->name;
}
));
$this->constants[$parsedConstant->name . '_duplicated_' . $amount] = $parsedConstant;
} else {
$this->constants[$parsedConstant->name] = $parsedConstant;
}
}
}
public function addEnumCase(PHPEnumCase $parsedConstant)
{
if (isset($parsedConstant->name)) {
if (array_key_exists($parsedConstant->name, $this->constants)) {
$amount = count(array_filter(
$this->constants,
function (PHPConst $nextConstant) use ($parsedConstant) {
return $nextConstant->name === $parsedConstant->name;
}
));
$this->constants[$parsedConstant->name . '_duplicated_' . $amount] = $parsedConstant;
} else {
$this->constants[$parsedConstant->name] = $parsedConstant;
}
}
}
/**
* @return PHPConst|null
* @throws RuntimeException
*/
public function getConstant($constantName)
{
$constants = array_filter($this->constants, function (PHPConst $constant) use ($constantName) {
return $constant->name === $constantName && $constant->duplicateOtherElement === false
&& BasePHPElement::entitySuitsCurrentPhpVersion($constant);
});
if (empty($constants)) {
throw new RuntimeException("Constant $constantName not found in stubs for set language version");
}
return array_pop($constants);
}
public function addMethod(PHPMethod $parsedMethod)
{
if (isset($parsedMethod->name)) {
if (array_key_exists($parsedMethod->name, $this->methods)) {
$amount = count(array_filter(
$this->methods,
function (PHPMethod $nextMethod) use ($parsedMethod) {
return $nextMethod->name === $parsedMethod->name;
}
));
$this->methods[$parsedMethod->name . '_duplicated_' . $amount] = $parsedMethod;
} else {
$this->methods[$parsedMethod->name] = $parsedMethod;
}
}
}
/**
* @param string $methodName
* @return PHPMethod|null
* @throws RuntimeException
*/
public function getMethod($methodName)
{
$methods = array_filter($this->methods, function (PHPMethod $method) use ($methodName) {
return $method->name === $methodName && $method->duplicateOtherElement === false
&& BasePHPElement::entitySuitsCurrentPhpVersion($method);
});
if (empty($methods)) {
throw new RuntimeException("Method $methodName not found in stubs for set language version");
}
return array_pop($methods);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace StubTests\Model;
use RuntimeException;
use function array_key_exists;
use function count;
abstract class BasePHPClass extends BasePHPElement
{
/**
* @var PHPMethod[]
*/
public $methods = [];
/**
* @var PHPConst[]
*/
public $constants = [];
public $isFinal = false;
public function addConstant(PHPConst $parsedConstant)
{
if (isset($parsedConstant->name)) {
if (array_key_exists($parsedConstant->name, $this->constants)) {
$amount = count(array_filter(
$this->constants,
function (PHPConst $nextConstant) use ($parsedConstant) {
return $nextConstant->name === $parsedConstant->name;
}
));
$this->constants[$parsedConstant->name . '_duplicated_' . $amount] = $parsedConstant;
} else {
$this->constants[$parsedConstant->name] = $parsedConstant;
}
}
}
public function addEnumCase(PHPEnumCase $parsedConstant)
{
if (isset($parsedConstant->name)) {
if (array_key_exists($parsedConstant->name, $this->constants)) {
$amount = count(array_filter(
$this->constants,
function (PHPConst $nextConstant) use ($parsedConstant) {
return $nextConstant->name === $parsedConstant->name;
}
));
$this->constants[$parsedConstant->name . '_duplicated_' . $amount] = $parsedConstant;
} else {
$this->constants[$parsedConstant->name] = $parsedConstant;
}
}
}
/**
* @return PHPConst|null
* @throws RuntimeException
*/
public function getConstant($constantName)
{
$constants = array_filter($this->constants, function (PHPConst $constant) use ($constantName) {
return $constant->name === $constantName && $constant->duplicateOtherElement === false
&& BasePHPElement::entitySuitsCurrentPhpVersion($constant);
});
if (empty($constants)) {
throw new RuntimeException("Constant $constantName not found in stubs for set language version");
}
return array_pop($constants);
}
public function addMethod(PHPMethod $parsedMethod)
{
if (isset($parsedMethod->name)) {
if (array_key_exists($parsedMethod->name, $this->methods)) {
$amount = count(array_filter(
$this->methods,
function (PHPMethod $nextMethod) use ($parsedMethod) {
return $nextMethod->name === $parsedMethod->name;
}
));
$this->methods[$parsedMethod->name . '_duplicated_' . $amount] = $parsedMethod;
} else {
$this->methods[$parsedMethod->name] = $parsedMethod;
}
}
}
/**
* @param string $methodName
* @return PHPMethod|null
* @throws RuntimeException
*/
public function getMethod($methodName)
{
$methods = array_filter($this->methods, function (PHPMethod $method) use ($methodName) {
return $method->name === $methodName && $method->duplicateOtherElement === false
&& BasePHPElement::entitySuitsCurrentPhpVersion($method);
});
if (empty($methods)) {
throw new RuntimeException("Method $methodName not found in stubs for set language version");
}
return array_pop($methods);
}
}
Function Calls
None |
Stats
MD5 | 6b5884740b13dbb274366e6b88d25d85 |
Eval Count | 0 |
Decode Time | 104 ms |