Simplify optional type value retrieval
This commit is contained in:
parent
604e1fd3e7
commit
b2d2a1ea15
1 changed files with 1 additions and 2 deletions
|
@ -138,8 +138,7 @@
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
($bytecode ? Functions::cbc('name') : 'name') => $this->name,
|
($bytecode ? Functions::cbc('name') : 'name') => $this->name,
|
||||||
// TODO: Review the ? logic here to see if makes sense
|
($bytecode ? Functions::cbc('type') : 'type') => $this->type?->value,
|
||||||
($bytecode ? Functions::cbc('type') : 'type') => ($this->type ? null : $this->type->value),
|
|
||||||
($bytecode ? Functions::cbc('host') : 'host') => $this->host,
|
($bytecode ? Functions::cbc('host') : 'host') => $this->host,
|
||||||
($bytecode ? Functions::cbc('ssl') : 'ssl') => $this->ssl
|
($bytecode ? Functions::cbc('ssl') : 'ssl') => $this->ssl
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Reference in a new issue