. */ declare(strict_types=1); namespace SP\Tests; use Attribute; /** * Class OutputChecker */ #[Attribute(Attribute::TARGET_METHOD)] final class OutputChecker { public function __construct(public readonly string $target) { } }