fixed some getters
Signed-off-by: tracer <tracer@24unix.net>
This commit is contained in:
parent
e9fbb8879a
commit
8c2da0b9d8
|
@ -28,7 +28,7 @@ class Panel
|
||||||
*/
|
*/
|
||||||
public function getA(): string
|
public function getA(): string
|
||||||
{
|
{
|
||||||
return $this->a ?? 'na';
|
return $this->a;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -36,7 +36,7 @@ class Panel
|
||||||
*/
|
*/
|
||||||
public function getAaaa(): string
|
public function getAaaa(): string
|
||||||
{
|
{
|
||||||
return $this->aaaa == 'na';
|
return $this->aaaa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue