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 Doctrine\Tests\ORM\Functional\Ticket\GH10661; ..

Decoded Output download

<?php

declare(strict_types=1);

namespace Doctrine\Tests\ORM\Functional\Ticket\GH10661;

use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Entity;

#[Entity]
class InvalidChildEntity extends InvalidEntity
{
    #[Column(type: 'string')]
    protected int $property2;

    #[Column(type: 'boolean')]
    private string $anotherProperty;
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

namespace Doctrine\Tests\ORM\Functional\Ticket\GH10661;

use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Entity;

#[Entity]
class InvalidChildEntity extends InvalidEntity
{
    #[Column(type: 'string')]
    protected int $property2;

    #[Column(type: 'boolean')]
    private string $anotherProperty;
}

Function Calls

None

Variables

None

Stats

MD5 67cf74cabe8600d7eed62749f7127f6d
Eval Count 0
Decode Time 113 ms