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 Symfony\Component\TypeInfo\Tests\Fixtures; use Symfony\Component\TypeInf..
Decoded Output download
<?php
namespace Symfony\Component\TypeInfo\Tests\Fixtures;
use Symfony\Component\TypeInfo\Type;
use \DateTimeInterface;
use \DateTimeImmutable as DateTime;
final class DummyWithUses
{
private DateTimeInterface $createdAt;
public function setCreatedAt(DateTime $createdAt): void
{
$this->createdAt = $createdAt;
}
public function getType(): Type
{
throw new \LogicException('Should not be called.');
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Symfony\Component\TypeInfo\Tests\Fixtures;
use Symfony\Component\TypeInfo\Type;
use \DateTimeInterface;
use \DateTimeImmutable as DateTime;
final class DummyWithUses
{
private DateTimeInterface $createdAt;
public function setCreatedAt(DateTime $createdAt): void
{
$this->createdAt = $createdAt;
}
public function getType(): Type
{
throw new \LogicException('Should not be called.');
}
}
Function Calls
None |
Stats
MD5 | 81d75e9f3224237c08e80c474704ca82 |
Eval Count | 0 |
Decode Time | 66 ms |