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\Models\DDC753; use Doctrine\ORM..

Decoded Output download

<?php

declare(strict_types=1);

namespace Doctrine\Tests\Models\DDC753;

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

#[Entity(repositoryClass: 'Doctrine\Tests\Models\DDC753\DDC753CustomRepository')]
class DDC753EntityWithCustomRepository
{
    /** @var int */
    #[Id]
    #[Column(type: 'integer')]
    #[GeneratedValue]
    protected $id;

    /** @var string */
    #[Column(type: 'string', length: 255)]
    protected $name;
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

namespace Doctrine\Tests\Models\DDC753;

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

#[Entity(repositoryClass: 'Doctrine\Tests\Models\DDC753\DDC753CustomRepository')]
class DDC753EntityWithCustomRepository
{
    /** @var int */
    #[Id]
    #[Column(type: 'integer')]
    #[GeneratedValue]
    protected $id;

    /** @var string */
    #[Column(type: 'string', length: 255)]
    protected $name;
}

Function Calls

None

Variables

None

Stats

MD5 d67f2189f37a5965e359632a26030afa
Eval Count 0
Decode Time 92 ms