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\Symfony\ValueObject\ValidatorAssert; us..
Decoded Output download
<?php
declare (strict_types=1);
namespace Rector\Symfony\ValueObject\ValidatorAssert;
use Rector\BetterPhpDocParser\PhpDoc\DoctrineAnnotationTagValueNode;
final class ClassMethodAndAnnotation
{
/**
* @var string[]
* @readonly
*/
private $possibleMethodNames;
/**
* @readonly
* @var \Rector\BetterPhpDocParser\PhpDoc\DoctrineAnnotationTagValueNode
*/
private $doctrineAnnotationTagValueNode;
/**
* @param string[] $possibleMethodNames
*/
public function __construct(array $possibleMethodNames, DoctrineAnnotationTagValueNode $doctrineAnnotationTagValueNode)
{
$this->possibleMethodNames = $possibleMethodNames;
$this->doctrineAnnotationTagValueNode = $doctrineAnnotationTagValueNode;
}
/**
* @return string[]
*/
public function getPossibleMethodNames() : array
{
return $this->possibleMethodNames;
}
public function getDoctrineAnnotationTagValueNode() : DoctrineAnnotationTagValueNode
{
return $this->doctrineAnnotationTagValueNode;
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare (strict_types=1);
namespace Rector\Symfony\ValueObject\ValidatorAssert;
use Rector\BetterPhpDocParser\PhpDoc\DoctrineAnnotationTagValueNode;
final class ClassMethodAndAnnotation
{
/**
* @var string[]
* @readonly
*/
private $possibleMethodNames;
/**
* @readonly
* @var \Rector\BetterPhpDocParser\PhpDoc\DoctrineAnnotationTagValueNode
*/
private $doctrineAnnotationTagValueNode;
/**
* @param string[] $possibleMethodNames
*/
public function __construct(array $possibleMethodNames, DoctrineAnnotationTagValueNode $doctrineAnnotationTagValueNode)
{
$this->possibleMethodNames = $possibleMethodNames;
$this->doctrineAnnotationTagValueNode = $doctrineAnnotationTagValueNode;
}
/**
* @return string[]
*/
public function getPossibleMethodNames() : array
{
return $this->possibleMethodNames;
}
public function getDoctrineAnnotationTagValueNode() : DoctrineAnnotationTagValueNode
{
return $this->doctrineAnnotationTagValueNode;
}
}
Function Calls
None |
Stats
MD5 | da64280279d7faab10e2840f8ee0e15d |
Eval Count | 0 |
Decode Time | 298 ms |