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\DDC5934; use Doctrine\Co..

Decoded Output download

<?php

declare(strict_types=1);

namespace Doctrine\Tests\Models\DDC5934;

use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;

#[ORM\Entity]
class DDC5934Member
{
    /** @var ArrayCollection */
    #[ORM\ManyToMany(targetEntity: DDC5934BaseContract::class, mappedBy: 'members')]
    public $contracts;

    public function __construct()
    {
        $this->contracts = new ArrayCollection();
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

namespace Doctrine\Tests\Models\DDC5934;

use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;

#[ORM\Entity]
class DDC5934Member
{
    /** @var ArrayCollection */
    #[ORM\ManyToMany(targetEntity: DDC5934BaseContract::class, mappedBy: 'members')]
    public $contracts;

    public function __construct()
    {
        $this->contracts = new ArrayCollection();
    }
}

Function Calls

None

Variables

None

Stats

MD5 a2055ebc945b9457b1d6150086f1175f
Eval Count 0
Decode Time 118 ms