vendor/api-platform/core/src/OpenApi/OpenApi.php line 22

  1. <?php
  2. /*
  3.  * This file is part of the API Platform project.
  4.  *
  5.  * (c) Kévin Dunglas <dunglas@gmail.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace ApiPlatform\OpenApi;
  12. use ApiPlatform\Documentation\DocumentationInterface;
  13. use ApiPlatform\OpenApi\Model\Components;
  14. use ApiPlatform\OpenApi\Model\ExtensionTrait;
  15. use ApiPlatform\OpenApi\Model\Info;
  16. use ApiPlatform\OpenApi\Model\Paths;
  17. final class OpenApi implements DocumentationInterface
  18. {
  19.     use ExtensionTrait;
  20.     // We're actually supporting 3.1 but swagger ui has a version constraint
  21.     // public const VERSION = '3.1.0';
  22.     public const VERSION '3.0.0';
  23.     private string $openapi self::VERSION;
  24.     public function __construct(private Info $info, private array $servers, private Paths $paths, private ?Components $components null, private array $security = [], private array $tags = [], private $externalDocs null, private ?string $jsonSchemaDialect null, private readonly ?\ArrayObject $webhooks null)
  25.     {
  26.     }
  27.     public function getOpenapi(): string
  28.     {
  29.         return $this->openapi;
  30.     }
  31.     public function getInfo(): Info
  32.     {
  33.         return $this->info;
  34.     }
  35.     public function getServers(): array
  36.     {
  37.         return $this->servers;
  38.     }
  39.     public function getPaths(): Paths
  40.     {
  41.         return $this->paths;
  42.     }
  43.     public function getComponents(): Components
  44.     {
  45.         return $this->components;
  46.     }
  47.     public function getSecurity(): array
  48.     {
  49.         return $this->security;
  50.     }
  51.     public function getTags(): array
  52.     {
  53.         return $this->tags;
  54.     }
  55.     public function getExternalDocs(): ?array
  56.     {
  57.         return $this->externalDocs;
  58.     }
  59.     public function getJsonSchemaDialect(): ?string
  60.     {
  61.         return $this->jsonSchemaDialect;
  62.     }
  63.     public function getWebhooks(): ?\ArrayObject
  64.     {
  65.         return $this->webhooks;
  66.     }
  67.     public function withOpenapi(string $openapi): self
  68.     {
  69.         $clone = clone $this;
  70.         $clone->openapi $openapi;
  71.         return $clone;
  72.     }
  73.     public function withInfo(Info $info): self
  74.     {
  75.         $clone = clone $this;
  76.         $clone->info $info;
  77.         return $clone;
  78.     }
  79.     public function withServers(array $servers): self
  80.     {
  81.         $clone = clone $this;
  82.         $clone->servers $servers;
  83.         return $clone;
  84.     }
  85.     public function withPaths(Paths $paths): self
  86.     {
  87.         $clone = clone $this;
  88.         $clone->paths $paths;
  89.         return $clone;
  90.     }
  91.     public function withComponents(Components $components): self
  92.     {
  93.         $clone = clone $this;
  94.         $clone->components $components;
  95.         return $clone;
  96.     }
  97.     public function withSecurity(array $security): self
  98.     {
  99.         $clone = clone $this;
  100.         $clone->security $security;
  101.         return $clone;
  102.     }
  103.     public function withTags(array $tags): self
  104.     {
  105.         $clone = clone $this;
  106.         $clone->tags $tags;
  107.         return $clone;
  108.     }
  109.     public function withExternalDocs(array $externalDocs): self
  110.     {
  111.         $clone = clone $this;
  112.         $clone->externalDocs $externalDocs;
  113.         return $clone;
  114.     }
  115.     public function withJsonSchemaDialect(?string $jsonSchemaDialect): self
  116.     {
  117.         $clone = clone $this;
  118.         $clone->jsonSchemaDialect $jsonSchemaDialect;
  119.         return $clone;
  120.     }
  121. }