added strict, OA schema
Signed-off-by: tracer <tracer@24unix.net>
This commit is contained in:
parent
0104259187
commit
93142c9744
|
@ -1,10 +1,14 @@
|
|||
<?php
|
||||
<?php declare(strict_types=1);
|
||||
|
||||
namespace App\Entity;
|
||||
|
||||
use OpenApi\Attributes as OAT;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
#[OAT\Schema(schema: 'nameserver')]
|
||||
|
||||
class Nameserver
|
||||
{
|
||||
private int $id;
|
||||
|
@ -26,30 +30,58 @@ class Nameserver
|
|||
/**
|
||||
* @return String
|
||||
*/
|
||||
#[OAT\Property(type: 'string')]
|
||||
public function getA(): string
|
||||
{
|
||||
return $this->a;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param String $a
|
||||
*/
|
||||
public function setA(string $a): void
|
||||
{
|
||||
$this->a = $a;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return String
|
||||
*/
|
||||
#[OAT\Property(type: 'string')]
|
||||
public function getAaaa(): string
|
||||
{
|
||||
return $this->aaaa;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param String $aaaa
|
||||
*/
|
||||
public function setAaaa(string $aaaa): void
|
||||
{
|
||||
$this->aaaa = $aaaa;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return String
|
||||
*/
|
||||
#[OAT\Property(type: 'string')]
|
||||
public function getApikey(): string
|
||||
{
|
||||
return $this->apikey;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param String $apikey
|
||||
*/
|
||||
public function setApikey(string $apikey): void
|
||||
{
|
||||
$this->apikey = $apikey;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return int
|
||||
*/
|
||||
#[OAT\Property(type: 'int')]
|
||||
public function getId(): int
|
||||
{
|
||||
return $this->id;
|
||||
|
@ -66,21 +98,12 @@ class Nameserver
|
|||
/**
|
||||
* @return String
|
||||
*/
|
||||
#[OAT\Property(type: 'string')]
|
||||
public function getName(): string
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param String $apikey
|
||||
*/
|
||||
public function setApikey(string $apikey): void
|
||||
{
|
||||
$this->apikey = $apikey;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param String $name
|
||||
*/
|
||||
|
@ -89,20 +112,4 @@ class Nameserver
|
|||
$this->name = $name;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param String $a
|
||||
*/
|
||||
public function setA(string $a): void
|
||||
{
|
||||
$this->a = $a;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param String $aaaa
|
||||
*/
|
||||
public function setAaaa(string $aaaa): void
|
||||
{
|
||||
$this->aaaa = $aaaa;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue