for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace FatCode\OpenApi\Annotation\Info;
use FatCode\Annotation\Target;
/**
* @Annotation
* @Target(Target::TARGET_ANNOTATION)
*/
class Contact
{
* The identifying name of the contact person/organization.
* @var string
public $name;
* The URL pointing to the contact information. MUST be in the format of a URL.
public $url;
* The email address of the contact person/organization. MUST be in the format of an email address.
public $email;
protected function getRequiredParameters(): array
return [];
}