<?php

declare(strict_types=1);

namespace OpenTelemetry\API\Metrics;

/**
 * Marker interface for synchronous instruments.
 */
interface SynchronousInstrument extends Instrument
{
}
