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\CMS; use Doctrine\Common..

Decoded Output download

<?php

declare(strict_types=1);

namespace Doctrine\Tests\Models\CMS;

use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\GeneratedValue;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\JoinColumn;
use Doctrine\ORM\Mapping\ManyToOne;
use Doctrine\ORM\Mapping\OneToMany;
use Doctrine\ORM\Mapping\Table;
use Doctrine\ORM\Mapping\Version;

#[Table(name: 'cms_articles')]
#[Entity]
class CmsArticle
{
    /** @var int */
    #[Id]
    #[Column(type: 'integer')]
    #[GeneratedValue(strategy: 'AUTO')]
    public $id;

    /** @var string */
    #[Column(type: 'string', length: 255)]
    public $topic;

    /** @var string */
    #[Column(type: 'text')]
    public $text;

    /** @var CmsUser */
    #[ManyToOne(targetEntity: 'CmsUser', inversedBy: 'articles')]
    #[JoinColumn(name: 'user_id', referencedColumnName: 'id')]
    public $user;

    /** @var Collection<int, CmsComment> */
    #[OneToMany(targetEntity: 'CmsComment', mappedBy: 'article')]
    public $comments;

    /** @var int */
    #[Version]
    #[Column(type: 'integer')]
    public $version;

    public function setAuthor(CmsUser $author): void
    {
        $this->user = $author;
    }

    public function addComment(CmsComment $comment): void
    {
        $this->comments[] = $comment;
        $comment->setArticle($this);
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

namespace Doctrine\Tests\Models\CMS;

use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\GeneratedValue;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\JoinColumn;
use Doctrine\ORM\Mapping\ManyToOne;
use Doctrine\ORM\Mapping\OneToMany;
use Doctrine\ORM\Mapping\Table;
use Doctrine\ORM\Mapping\Version;

#[Table(name: 'cms_articles')]
#[Entity]
class CmsArticle
{
    /** @var int */
    #[Id]
    #[Column(type: 'integer')]
    #[GeneratedValue(strategy: 'AUTO')]
    public $id;

    /** @var string */
    #[Column(type: 'string', length: 255)]
    public $topic;

    /** @var string */
    #[Column(type: 'text')]
    public $text;

    /** @var CmsUser */
    #[ManyToOne(targetEntity: 'CmsUser', inversedBy: 'articles')]
    #[JoinColumn(name: 'user_id', referencedColumnName: 'id')]
    public $user;

    /** @var Collection<int, CmsComment> */
    #[OneToMany(targetEntity: 'CmsComment', mappedBy: 'article')]
    public $comments;

    /** @var int */
    #[Version]
    #[Column(type: 'integer')]
    public $version;

    public function setAuthor(CmsUser $author): void
    {
        $this->user = $author;
    }

    public function addComment(CmsComment $comment): void
    {
        $this->comments[] = $comment;
        $comment->setArticle($this);
    }
}

Function Calls

None

Variables

None

Stats

MD5 8a6af54b2ea2963151d65415d146ca1a
Eval Count 0
Decode Time 98 ms