Refactoring: extract process handling from async job.

This commit is contained in:
Joao Patricio
2023-03-21 10:32:38 +00:00
parent 34c9265aa9
commit 29fb40bd16
6 changed files with 27 additions and 39 deletions

View File

@@ -9,11 +9,11 @@ use Spatie\LaravelData\Data;
class RemoteProcessArgs extends Data
{
public function __construct(
protected string $destination,
protected string $command,
protected int $port = 22,
protected string $user = 'root',
protected string $type = ActivityTypes::COOLIFY_PROCESS->value,
protected string $status = ProcessStatus::HOLDING->value,
public string $destination,
public string $command,
public int $port,
public string $user,
public string $type = ActivityTypes::COOLIFY_PROCESS->value,
public string $status = ProcessStatus::HOLDING->value,
){}
}