Skip to content

Commit 7d46e12

Browse files
committed
exchange strval with string cast
Signed-off-by: Simon L. <[email protected]>
1 parent d6e0d8b commit 7d46e12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

php/src/Controller/DockerController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ public function StartContainer(Request $request, Response $response, array $args
189189

190190
$config = $this->configurationManager->GetConfig();
191191
// set AIO_URL
192-
$config['AIO_URL'] = $host . ':' . strval($port) . $path;
192+
$config['AIO_URL'] = $host . ':' . (string)$port . $path;
193193
// set wasStartButtonClicked
194194
$config['wasStartButtonClicked'] = 1;
195195
// set install_latest_major

0 commit comments

Comments
 (0)