| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | |
| 6: | |
| 7: | |
| 8: | |
| 9: | |
| 10: | |
| 11: | |
| 12: | |
| 13: | |
| 14: | namespace Nexus\Mcp\Core\Schema; |
| 15: | |
| 16: | use Nexus\Mcp\Core\Schema\MetaObject\GenericResultMetaObject; |
| 17: | use Nexus\Mcp\Core\Schema\MetaObject\ResultMetaObject; |
| 18: | |
| 19: | |
| 20: | |
| 21: | |
| 22: | |
| 23: | |
| 24: | |
| 25: | |
| 26: | |
| 27: | |
| 28: | abstract readonly class Result implements Arrayable |
| 29: | { |
| 30: | public function __construct(public ResultMetaObject $meta = new GenericResultMetaObject()) |
| 31: | { |
| 32: | } |
| 33: | |
| 34: | #[\Override] |
| 35: | public function jsonSerialize(): array |
| 36: | { |
| 37: | return $this->toArray(); |
| 38: | } |
| 39: | |
| 40: | |
| 41: | |
| 42: | |
| 43: | abstract public function rebuildWithMeta(ResultMetaObject $meta): static; |
| 44: | |
| 45: | |
| 46: | |
| 47: | |
| 48: | abstract protected function getResultType(): string; |
| 49: | } |
| 50: | |