Skip to content

Commit e5291af

Browse files
cuppettclaude
andcommitted
fix(provisioning_api): Close unterminated string literal in AppConfigController
Commit 626fadd accepted a GitHub review suggestion verbatim that was missing the closing single quote on 'yes', producing a fatal PHP parse error that took out every integration-sqlite job (OCS endpoints returned 998 instead of 100). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Signed-off-by: Stephen Cuppett <steve@cuppett.com>
1 parent e825dba commit e5291af

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/provisioning_api/lib/Controller/AppConfigController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ protected function verifyConfigKey(string $app, string $key, string $value) {
203203
throw new \InvalidArgumentException('The given key can not be set');
204204
}
205205

206-
if ($app === 'core' && $key === 'encryption_enabled' && $value !== 'yes) {
206+
if ($app === 'core' && $key === 'encryption_enabled' && $value !== 'yes') {
207207
throw new \InvalidArgumentException('The given key can not be set');
208208
}
209209

0 commit comments

Comments
 (0)