JEMBOT MAWOT Bypass Shell

Current Path : /home/cinepatreb/billetterie/vendor/api-platform/core/src/OpenApi/Model/
Upload File :
Current File : /home/cinepatreb/billetterie/vendor/api-platform/core/src/OpenApi/Model/RequestBody.php

<?php

/*
 * This file is part of the API Platform project.
 *
 * (c) Kévin Dunglas <dunglas@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

declare(strict_types=1);

namespace ApiPlatform\OpenApi\Model;

final class RequestBody
{
    use ExtensionTrait;

    private $description;
    private $content;
    private $required;

    public function __construct(string $description = '', \ArrayObject $content = null, bool $required = false)
    {
        $this->description = $description;
        $this->content = $content;
        $this->required = $required;
    }

    public function getDescription(): string
    {
        return $this->description;
    }

    public function getContent(): \ArrayObject
    {
        return $this->content;
    }

    public function getRequired(): bool
    {
        return $this->required;
    }

    public function withDescription(string $description): self
    {
        $clone = clone $this;
        $clone->description = $description;

        return $clone;
    }

    public function withContent(\ArrayObject $content): self
    {
        $clone = clone $this;
        $clone->content = $content;

        return $clone;
    }

    public function withRequired(bool $required): self
    {
        $clone = clone $this;
        $clone->required = $required;

        return $clone;
    }
}

class_alias(RequestBody::class, \ApiPlatform\Core\OpenApi\Model\RequestBody::class);

xxxxx1.0, XXX xxxx