Camelize property turn_domain => turnDomain

Signed-off-by: Pablo Zmdl <pablo@nextcloud.com>
This commit is contained in:
Pablo Zmdl 2026-01-23 17:38:20 +01:00
parent 010b56cf12
commit 0f52e047d2

View file

@ -183,7 +183,7 @@ class ConfigurationManager
set { $this->set('aio_community_containers', implode(' ', $value)); } set { $this->set('aio_community_containers', implode(' ', $value)); }
} }
public string $turn_domain { public string $turnDomain {
get => $this->get('turn_domain', ''); get => $this->get('turn_domain', '');
set { $this->set('turn_domain', $value); } set { $this->set('turn_domain', $value); }
} }
@ -1060,7 +1060,7 @@ class ConfigurationManager
'APACHE_PORT' => $this->apache_port, 'APACHE_PORT' => $this->apache_port,
'APACHE_IP_BINDING' => $this->apacheIpBinding, 'APACHE_IP_BINDING' => $this->apacheIpBinding,
'TALK_PORT' => $this->talk_port, 'TALK_PORT' => $this->talk_port,
'TURN_DOMAIN' => $this->turn_domain, 'TURN_DOMAIN' => $this->turnDomain,
'NEXTCLOUD_MOUNT' => $this->nextcloud_mount, 'NEXTCLOUD_MOUNT' => $this->nextcloud_mount,
'BACKUP_RESTORE_PASSWORD' => $this->borgRestorePassword, 'BACKUP_RESTORE_PASSWORD' => $this->borgRestorePassword,
'CLAMAV_ENABLED' => $this->isClamavEnabled ? 'yes' : '', 'CLAMAV_ENABLED' => $this->isClamavEnabled ? 'yes' : '',