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 namespace OpenApi\Examples\UsingLinks; use OpenApi\Annotations as OA; /** * @OA\..

Decoded Output download

<?php

namespace OpenApi\Examples\UsingLinks;

use OpenApi\Annotations as OA;

/**
 * @OA\Schema(schema="pullrequest")
 */
class PullRequest
{
    /**
     * @OA\Property
     *
     * @var int
     */
    public $id;

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

    /**
     * @OA\Property
     *
     * @var Repository
     */
    public $repository;

    /**
     * @OA\Property
     *
     * @var User
     */
    public $author;
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace OpenApi\Examples\UsingLinks;

use OpenApi\Annotations as OA;

/**
 * @OA\Schema(schema="pullrequest")
 */
class PullRequest
{
    /**
     * @OA\Property
     *
     * @var int
     */
    public $id;

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

    /**
     * @OA\Property
     *
     * @var Repository
     */
    public $repository;

    /**
     * @OA\Property
     *
     * @var User
     */
    public $author;
}

Function Calls

None

Variables

None

Stats

MD5 dd0c3d1106f1c3e6ee8c374133ceebf7
Eval Count 0
Decode Time 85 ms