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

Open in your IDE?
  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.     private $url;
  16.     private $description;
  17.     private $variables;
  18.     public function __construct(string $urlstring $description ''\ArrayObject $variables null)
  19.     {
  20.         $this->url $url;
  21.         $this->description $description;
  22.         $this->variables $variables;
  23.     }
  24.     public function getUrl(): string
  25.     {
  26.         return $this->url;
  27.     }
  28.     public function getDescription(): string
  29.     {
  30.         return $this->description;
  31.     }
  32.     public function getVariables(): ?\ArrayObject
  33.     {
  34.         return $this->variables;
  35.     }
  36.     public function withUrl(string $url): self
  37.     {
  38.         $clone = clone $this;
  39.         $clone->url $url;
  40.         return $clone;
  41.     }
  42.     public function withDescription(string $description): self
  43.     {
  44.         $clone = clone $this;
  45.         $clone->description $description;
  46.         return $clone;
  47.     }
  48.     public function withVariables(\ArrayObject $variables): self
  49.     {
  50.         $clone = clone $this;
  51.         $clone->variables $variables;
  52.         return $clone;
  53.     }
  54. }
  55. class_alias(Server::class, \ApiPlatform\Core\OpenApi\Model\Server::class);