Skip to content

Commit 04ce622

Browse files
committed
refactor: Update build_args property type in ApplicationDeploymentJob
1 parent ed78179 commit 04ce622

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/Jobs/ApplicationDeploymentJob.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class ApplicationDeploymentJob implements ShouldBeEncrypted, ShouldQueue
109109

110110
private bool $is_debug_enabled;
111111

112-
private $build_args;
112+
private Collection|string $build_args;
113113

114114
private $env_args;
115115

@@ -168,6 +168,7 @@ public function __construct(int $application_deployment_queue_id)
168168
$this->application_deployment_queue = ApplicationDeploymentQueue::find($application_deployment_queue_id);
169169
$this->application = Application::find($this->application_deployment_queue->application_id);
170170
$this->build_pack = data_get($this->application, 'build_pack');
171+
$this->build_args = collect([]);
171172

172173
$this->application_deployment_queue_id = $application_deployment_queue_id;
173174
$this->deployment_uuid = $this->application_deployment_queue->deployment_uuid;

0 commit comments

Comments
 (0)