fixed some getters

Signed-off-by: tracer <tracer@24unix.net>
This commit is contained in:
tracer 2022-01-31 19:17:47 +01:00
parent e9fbb8879a
commit 8c2da0b9d8
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ class Panel
*/
public function getA(): string
{
return $this->a ?? 'na';
return $this->a;
}
/**
@ -36,7 +36,7 @@ class Panel
*/
public function getAaaa(): string
{
return $this->aaaa == 'na';
return $this->aaaa;
}
/**