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 OpenApi\Examples\Webhooks; use OpenApi\Annotati..

Decoded Output download

<?php declare(strict_types=1);

namespace OpenApi\Examples\Webhooks;

use OpenApi\Annotations as OA;

/**
 * @OA\Schema(required={"id", "name"})
 */
final class Pet
{
    /**
     * @OA\Property(format="int64")
     *
     * @var int
     */
    public $id;

    /**
     * @OA\Property
     *
     * @var string
     */
    public $name;

    /**
     * @OA\Property
     *
     * @var string
     */
    public $tag;
}
 ?>

Did this file decode correctly?

Original Code

<?php declare(strict_types=1);

namespace OpenApi\Examples\Webhooks;

use OpenApi\Annotations as OA;

/**
 * @OA\Schema(required={"id", "name"})
 */
final class Pet
{
    /**
     * @OA\Property(format="int64")
     *
     * @var int
     */
    public $id;

    /**
     * @OA\Property
     *
     * @var string
     */
    public $name;

    /**
     * @OA\Property
     *
     * @var string
     */
    public $tag;
}

Function Calls

None

Variables

None

Stats

MD5 2b015834997eb7b4cde41f3ae05146df
Eval Count 0
Decode Time 104 ms