Camelize property nextcloud_mount => nextcloudMount

Signed-off-by: Pablo Zmdl <pablo@nextcloud.com>
This commit is contained in:
Pablo Zmdl 2026-01-23 17:41:26 +01:00
parent c732d736d2
commit e89b89cd31
4 changed files with 16 additions and 6 deletions

View file

@ -119,7 +119,7 @@ readonly class ContainerDefinitionFetcher {
}
}
if($value['source'] === '%NEXTCLOUD_MOUNT%') {
$value['source'] = $this->configurationManager->nextcloud_mount;
$value['source'] = $this->configurationManager->nextcloudMount;
if($value['source'] === '') {
continue;
}
@ -140,7 +140,7 @@ readonly class ContainerDefinitionFetcher {
}
}
if ($value['destination'] === '%NEXTCLOUD_MOUNT%') {
$value['destination'] = $this->configurationManager->nextcloud_mount;
$value['destination'] = $this->configurationManager->nextcloudMount;
if($value['destination'] === '') {
continue;
}