diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-01-17 02:11:31 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-01-17 02:11:31 +0900 |
| commit | deacd0dfc195bca41af631114804d29937337cd8 (patch) | |
| tree | f1f83580e5bc892c0794ac41632bc0cce3498f65 /services/app/src/SandboxExec/ExecutionResult.php | |
| parent | 38ddeb28ec846ee966d0fe6873585d697a9ef373 (diff) | |
| download | phperkaigi-2024-albatross-deacd0dfc195bca41af631114804d29937337cd8.tar.gz phperkaigi-2024-albatross-deacd0dfc195bca41af631114804d29937337cd8.tar.zst phperkaigi-2024-albatross-deacd0dfc195bca41af631114804d29937337cd8.zip | |
.
Diffstat (limited to 'services/app/src/SandboxExec/ExecutionResult.php')
| -rw-r--r-- | services/app/src/SandboxExec/ExecutionResult.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/services/app/src/SandboxExec/ExecutionResult.php b/services/app/src/SandboxExec/ExecutionResult.php new file mode 100644 index 0000000..7e8b37b --- /dev/null +++ b/services/app/src/SandboxExec/ExecutionResult.php @@ -0,0 +1,17 @@ +<?php + +declare(strict_types=1); + +namespace Nsfisis\Albatross\SandboxExec; + +use Nsfisis\Albatross\Models\ExecutionStatus; + +final class ExecutionResult +{ + public function __construct( + public readonly ExecutionStatus $status, + public readonly string $stdout, + public readonly string $stderr, + ) { + } +} |
