Easier to read

This commit is contained in:
Lance Pioch 2024-03-23 16:26:43 -04:00
parent 358ac96ac1
commit 9560e18798

View File

@ -122,7 +122,7 @@ class Node extends Model
*/ */
public function getConnectionAddress(): string public function getConnectionAddress(): string
{ {
return sprintf('%s://%s:%s', $this->scheme, $this->fqdn, $this->daemonListen); return "$this->scheme://$this->fqdn:$this->daemonListen";
} }
/** /**