Jake Vanderwerf
2026-01-28 8c6502de2f8ec2bd8382cd6945c327d7be400e14
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
namespace JVBase\managers\queue;
if (!defined('ABSPATH')) {
    exit;
}
//Result.php
final class Result
{
    public function __construct(
        public string $outcome, // success | partial | failed
        public ?array $result = null
    ) {}
}