vendor/api-platform/core/src/OpenApi/Model/Server.php line 16

  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\Model;
  12. final class Server
  13. {
  14.     use ExtensionTrait;
  15.     public function __construct(private string $url, private string $description '', private ?\ArrayObject $variables null)
  16.     {
  17.     }
  18.     public function getUrl(): string
  19.     {
  20.         return $this->url;
  21.     }
  22.     public function getDescription(): string
  23.     {
  24.         return $this->description;
  25.     }
  26.     public function getVariables(): ?\ArrayObject
  27.     {
  28.         return $this->variables;
  29.     }
  30.     public function withUrl(string $url): self
  31.     {
  32.         $clone = clone $this;
  33.         $clone->url $url;
  34.         return $clone;
  35.     }
  36.     public function withDescription(string $description): self
  37.     {
  38.         $clone = clone $this;
  39.         $clone->description $description;
  40.         return $clone;
  41.     }
  42.     public function withVariables(\ArrayObject $variables): self
  43.     {
  44.         $clone = clone $this;
  45.         $clone->variables $variables;
  46.         return $clone;
  47.     }
  48. }