fix issue with php site creation

This commit is contained in:
Saeed Vaziry 2024-01-01 21:44:49 +01:00
parent ec6e55e30c
commit 1ce92d9361

View File

@ -52,9 +52,9 @@ public function createFields(array $input): array
{ {
return [ return [
'web_directory' => $input['web_directory'] ?? '', 'web_directory' => $input['web_directory'] ?? '',
'source_control_id' => $input['source_control'], 'source_control_id' => $input['source_control'] ?? '',
'repository' => $input['repository'], 'repository' => $input['repository'] ?? '',
'branch' => $input['branch'], 'branch' => $input['branch'] ?? '',
]; ];
} }