The trait Apie\OpenapiSchema\Conce...alueObjectWithExtension requires the property $name which is not provided by Apie\OpenapiSchema\Spec\ExternalDocs.
Loading history...
14
15
/**
16
* @var string|null
17
*/
18
private $description;
19
20
/**
21
* @var Url|null
22
*/
23
private $url;
24
25
public function __construct(Url $url, ?string $description = null)
26
{
27
$this->url = $url;
28
$this->description = $description;
29
$this->specificationExtension = new SpecificationExtension([]);