관리-도구
편집 파일: ContextStamp.php
<?php declare(strict_types=1); namespace Flasher\Prime\Stamp; final readonly class ContextStamp implements PresentableStampInterface, StampInterface { /** * @param array<string, mixed> $context */ public function __construct(private array $context) { } /** * @return array<string, mixed> */ public function getContext(): array { return $this->context; } /** * @return array{context: array<string, mixed>} */ public function toArray(): array { return ['context' => $this->context]; } }