mirror of
https://github.com/standardebooks/web.git
synced 2025-07-12 17:42:29 -04:00
Fix types
This commit is contained in:
parent
41dd9db4aa
commit
a0dc70762d
1 changed files with 5 additions and 5 deletions
|
@ -3,10 +3,10 @@ use Safe\DateTimeImmutable;
|
|||
|
||||
/**
|
||||
* @property ?int $DeathYear
|
||||
* @property string $UrlName
|
||||
* @property string $Url
|
||||
* @property array<string> $AlternateNames
|
||||
* @property array<string> $_AlternateNames
|
||||
* @property ?string $UrlName
|
||||
* @property ?string $Url
|
||||
* @property ?array<string> $AlternateNames
|
||||
* @property ?array<string> $_AlternateNames
|
||||
*/
|
||||
class Artist{
|
||||
use Traits\Accessor;
|
||||
|
@ -18,7 +18,7 @@ class Artist{
|
|||
protected ?int $_DeathYear = null;
|
||||
protected ?string $_UrlName = null;
|
||||
protected ?string $_Url = null;
|
||||
protected array $_AlternateNames;
|
||||
protected ?array $_AlternateNames = null;
|
||||
|
||||
// *******
|
||||
// SETTERS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue