remove blank lines after class opening (#1468)

add the php-cs-fixer no_blank_lines_after_class_opening rule and apply to codebase
This commit is contained in:
Brett McBride 2025-01-07 21:18:52 +11:00 committed by GitHub
parent b515b6b6ff
commit 7aa3e02eb0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
118 changed files with 1 additions and 117 deletions

View File

@ -29,6 +29,7 @@ return $config->setRules([
'include' => true,
'lowercase_cast' => true,
'new_with_parentheses' => true,
'no_blank_lines_after_class_opening' => true,
'no_extra_blank_lines' => true,
'no_leading_import_slash' => true,
'no_trailing_whitespace' => true,

View File

@ -6,7 +6,6 @@ namespace OpenTelemetry\Example;
final class Example
{
public function test(): int
{
return 42;

View File

@ -8,7 +8,6 @@ use OpenTelemetry\API\Instrumentation\AutoInstrumentation\InstrumentationConfigu
final class ExampleConfig implements InstrumentationConfiguration
{
public function __construct(
public readonly string $spanName,
public readonly bool $enabled = true,

View File

@ -16,7 +16,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class ExampleConfigProvider implements ComponentProvider
{
/**
* @psalm-suppress MoreSpecificImplementedParamType
* @param array{

View File

@ -14,7 +14,6 @@ use OpenTelemetry\Context\Context;
final class ExampleInstrumentation implements Instrumentation
{
public function register(HookManagerInterface $hookManager, ConfigProperties $configuration, InstrumentationContext $context): void
{
$config = $configuration->get(ExampleConfig::class) ?? throw new Exception('example instrumentation must be configured');

View File

@ -8,7 +8,6 @@ use OpenTelemetry\API\Configuration\ConfigProperties;
final class ConfigurationRegistry implements ConfigProperties
{
private array $configurations = [];
public function add(InstrumentationConfiguration $configuration): self

View File

@ -6,5 +6,4 @@ namespace OpenTelemetry\API\Instrumentation\AutoInstrumentation;
interface InstrumentationConfiguration
{
}

View File

@ -8,7 +8,6 @@ use OpenTelemetry\Context\ContextInterface;
interface CounterInterface extends SynchronousInstrument
{
/**
* @param float|int $amount non-negative amount to increment by
* @param iterable<non-empty-string, string|bool|float|int|array|null> $attributes

View File

@ -15,7 +15,6 @@ use OpenTelemetry\Context\ContextInterface;
*/
interface GaugeInterface extends SynchronousInstrument
{
/**
* @param float|int $amount current absolute value
* @param iterable<non-empty-string, string|bool|float|int|array|null> $attributes

View File

@ -8,7 +8,6 @@ use OpenTelemetry\Context\ContextInterface;
interface HistogramInterface extends SynchronousInstrument
{
/**
* @param float|int $amount non-negative amount to record
* @param iterable<non-empty-string, string|bool|float|int|array|null> $attributes

View File

@ -6,7 +6,6 @@ namespace OpenTelemetry\API\Metrics;
interface MeterInterface
{
/**
* Reports measurements for multiple asynchronous instrument from a single callback.
*

View File

@ -6,7 +6,6 @@ namespace OpenTelemetry\API\Metrics;
interface MeterProviderInterface
{
/**
* Returns a `Meter` for the given instrumentation scope.
*

View File

@ -48,7 +48,6 @@ namespace OpenTelemetry\API\Metrics;
*/
interface ObservableCallbackInterface
{
/**
* Detaches the associated callback from the instrument.
*/

View File

@ -6,7 +6,6 @@ namespace OpenTelemetry\API\Metrics;
interface ObservableCounterInterface extends AsynchronousInstrument
{
/**
* @param callable(ObserverInterface): void $callback function responsible for
* reporting the measurements (as absolute values)

View File

@ -6,7 +6,6 @@ namespace OpenTelemetry\API\Metrics;
interface ObservableGaugeInterface extends AsynchronousInstrument
{
/**
* @param callable(ObserverInterface): void $callback function responsible for
* reporting the measurements

View File

@ -6,7 +6,6 @@ namespace OpenTelemetry\API\Metrics;
interface ObservableUpDownCounterInterface extends AsynchronousInstrument
{
/**
* @param callable(ObserverInterface): void $callback function responsible for
* reporting the measurements (as absolute values)

View File

@ -6,7 +6,6 @@ namespace OpenTelemetry\API\Metrics;
interface ObserverInterface
{
/**
* Records the given absolute datapoint.
*

View File

@ -8,7 +8,6 @@ use OpenTelemetry\Context\ContextInterface;
interface UpDownCounterInterface extends SynchronousInstrument
{
/**
* @param float|int $amount amount to increment / decrement by
* @param iterable<non-empty-string, string|bool|float|int|array|null> $attributes

View File

@ -16,7 +16,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
class HttpConfigProvider implements ComponentProvider
{
public function createPlugin(array $properties, Context $context): GeneralInstrumentationConfiguration
{
return new HttpConfig($properties);

View File

@ -17,7 +17,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class LogRecordExporterConsole implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -24,7 +24,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
#[PackageDependency('open-telemetry/exporter-otlp', '^1.0.5')]
final class LogRecordExporterOtlp implements ComponentProvider
{
/**
* @param array{
* protocol: 'http/protobuf'|'http/json'|'grpc',

View File

@ -19,7 +19,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class LogRecordProcessorBatch implements ComponentProvider
{
/**
* @param array{
* schedule_delay: int<0, max>,

View File

@ -18,7 +18,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class LogRecordProcessorSimple implements ComponentProvider
{
/**
* @param array{
* exporter: ComponentPlugin<LogRecordExporterInterface>,

View File

@ -16,7 +16,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class AggregationResolverDefault implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -16,7 +16,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class MetricExporterConsole implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -25,7 +25,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
#[PackageDependency('open-telemetry/exporter-otlp', '^1.0.5')]
final class MetricExporterOtlp implements ComponentProvider
{
/**
* @param array{
* protocol: 'http/protobuf'|'http/json'|'grpc',

View File

@ -18,7 +18,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class MetricReaderPeriodic implements ComponentProvider
{
/**
* @param array{
* interval: int<0, max>,

View File

@ -50,7 +50,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class OpenTelemetrySdk implements ComponentProvider
{
/**
* @param array{
* file_format: '0.3',

View File

@ -18,7 +18,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
#[PackageDependency('open-telemetry/extension-propagator-b3', '^1.0.1')]
final class TextMapPropagatorB3 implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -18,7 +18,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
#[PackageDependency('open-telemetry/extension-propagator-b3', '^1.0.1')]
final class TextMapPropagatorB3Multi implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -16,7 +16,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class TextMapPropagatorBaggage implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -17,7 +17,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class TextMapPropagatorComposite implements ComponentProvider
{
/**
* @param list<ComponentPlugin<TextMapPropagatorInterface>> $properties
*/

View File

@ -18,7 +18,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
#[PackageDependency('open-telemetry/extension-propagator-jaeger', '^0.0.2')]
final class TextMapPropagatorJaeger implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -16,7 +16,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class TextMapPropagatorTraceContext implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -16,7 +16,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class SamplerAlwaysOff implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -16,7 +16,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class SamplerAlwaysOn implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -19,7 +19,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class SamplerParentBased implements ComponentProvider
{
/**
* @param array{
* root: ComponentPlugin<SamplerInterface>,

View File

@ -16,7 +16,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class SamplerTraceIdRatioBased implements ComponentProvider
{
/**
* @param array{
* ratio: float,

View File

@ -17,7 +17,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class SpanExporterConsole implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -24,7 +24,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
#[PackageDependency('open-telemetry/exporter-otlp', '^1.0.5')]
final class SpanExporterOtlp implements ComponentProvider
{
/**
* @param array{
* protocol: 'http/protobuf'|'http/json'|'grpc',

View File

@ -20,7 +20,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
#[PackageDependency('open-telemetry/exporter-zipkin', '^1.0')]
final class SpanExporterZipkin implements ComponentProvider
{
/**
* @param array{
* endpoint: string,

View File

@ -19,7 +19,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class SpanProcessorBatch implements ComponentProvider
{
/**
* @param array{
* schedule_delay: int<0, max>,

View File

@ -18,7 +18,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
final class SpanProcessorSimple implements ComponentProvider
{
/**
* @param array{
* exporter: ComponentPlugin<SpanExporterInterface>,

View File

@ -17,7 +17,6 @@ use OpenTelemetry\SDK\SdkBuilder;
final class Configuration
{
/**
* @param ComponentPlugin<SdkBuilder> $sdkPlugin
*/

View File

@ -11,7 +11,6 @@ namespace OpenTelemetry\Config\SDK\Configuration;
*/
interface ComponentPlugin
{
/**
* Creates the component that is provided by this plugin.
*

View File

@ -14,7 +14,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
*/
interface ComponentProvider
{
/**
* @param array $properties properties provided for this component provider
* @param Context $context context that should be used to resolve component plugins

View File

@ -12,7 +12,6 @@ use Symfony\Component\Config\Definition\Builder\NodeDefinition;
*/
interface ComponentProviderRegistry
{
/**
* Creates a node to specify a component plugin.
*

View File

@ -36,7 +36,6 @@ use function var_export;
*/
final class ConfigurationFactory
{
private readonly CompiledConfigurationFactory $compiledFactory;
/**

View File

@ -16,7 +16,6 @@ use Psr\Log\NullLogger;
*/
final class Context
{
/**
* @param TracerProviderInterface $tracerProvider tracer provider to use for self diagnostics
* @param MeterProviderInterface $meterProvider meter provider to use for self diagnostics

View File

@ -6,7 +6,6 @@ namespace OpenTelemetry\Config\SDK\Configuration\Environment;
final class ArrayEnvSource implements EnvSource
{
public function __construct(
private readonly array $env,
) {

View File

@ -6,6 +6,5 @@ namespace OpenTelemetry\Config\SDK\Configuration\Environment;
interface EnvReader
{
public function read(string $name): ?string;
}

View File

@ -8,7 +8,6 @@ use Symfony\Component\Config\Resource\ResourceInterface;
class EnvResource implements ResourceInterface
{
public function __construct(
public readonly string $name,
public readonly ?string $value,

View File

@ -10,7 +10,6 @@ use Symfony\Component\Config\ResourceCheckerInterface;
final class EnvResourceChecker implements ResourceCheckerInterface
{
public function __construct(
private readonly EnvReader $envReader,
) {

View File

@ -6,6 +6,5 @@ namespace OpenTelemetry\Config\SDK\Configuration\Environment;
interface EnvSource
{
public function readRaw(string $name): mixed;
}

View File

@ -9,7 +9,6 @@ use function trim;
final class EnvSourceReader implements EnvReader
{
/**
* @param iterable<EnvSource> $envSources
*/

View File

@ -8,7 +8,6 @@ use function get_cfg_var;
final class PhpIniEnvSource implements EnvSource
{
public function readRaw(string $name): string|array|false
{
return get_cfg_var($name);

View File

@ -6,7 +6,6 @@ namespace OpenTelemetry\Config\SDK\Configuration\Environment;
final class ServerEnvSource implements EnvSource
{
public function readRaw(string $name): mixed
{
return $_SERVER[$name] ?? null;

View File

@ -12,7 +12,6 @@ use Symfony\Component\Config\Definition\ArrayNode;
*/
final class ArrayNodeDefaultNull extends ArrayNode
{
public static function fromNode(ArrayNode $node): ArrayNodeDefaultNull
{
$defaultNull = new ArrayNodeDefaultNull($node->getName());

View File

@ -14,7 +14,6 @@ use Symfony\Component\Config\Definition\NodeInterface;
*/
final class ArrayNodeDefaultNullDefinition extends ArrayNodeDefinition
{
protected function createNode(): NodeInterface
{
$node = parent::createNode();

View File

@ -16,7 +16,6 @@ use Symfony\Component\Config\Definition\Processor;
*/
final class CompiledConfigurationFactory
{
/**
* @param ComponentProvider<T> $rootComponent
* @param NodeInterface $node

View File

@ -15,7 +15,6 @@ use OpenTelemetry\Config\SDK\Configuration\Context;
*/
final class ComponentPlugin implements \OpenTelemetry\Config\SDK\Configuration\ComponentPlugin
{
/**
* @param array $properties resolved properties according to component provider config
* @param ComponentProvider<T> $provider component provider used to create the component

View File

@ -30,7 +30,6 @@ use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException;
*/
final class ComponentProviderRegistry implements \OpenTelemetry\Config\SDK\Configuration\ComponentProviderRegistry, ResourceTrackable
{
/** @var array<string, array<string, ComponentProvider>> */
private array $providers = [];
/** @var array<string, array<string, true>> */

View File

@ -12,7 +12,6 @@ use Symfony\Component\Config\Resource\SelfCheckingResourceInterface;
*/
final class ComposerPackageResource implements SelfCheckingResourceInterface
{
public readonly string $packageName;
public readonly string|false $version;

View File

@ -12,7 +12,6 @@ use Symfony\Component\Config\Resource\ResourceInterface;
*/
final class ConfigurationLoader implements \OpenTelemetry\Config\SDK\Configuration\Loader\ConfigurationLoader
{
private array $configurations = [];
private readonly ?ResourceCollection $resources;

View File

@ -28,7 +28,6 @@ use Symfony\Component\Config\Definition\Builder\VariableNodeDefinition;
*/
final class EnvSubstitutionNormalization
{
public function __construct(
private readonly EnvReader $envReader,
) {

View File

@ -23,7 +23,6 @@ use Symfony\Component\Config\Resource\ResourceInterface;
*/
final class ResourceCollection implements \OpenTelemetry\Config\SDK\Configuration\ResourceCollection
{
/** @var array<ResourceInterface> */
private array $resources = [];
private readonly ComposerResource $composerResource;

View File

@ -8,6 +8,5 @@ use OpenTelemetry\Config\SDK\Configuration\ResourceCollection;
interface ResourceTrackable
{
public function trackResources(?ResourceCollection $resources): void;
}

View File

@ -13,7 +13,6 @@ use OpenTelemetry\Config\SDK\Configuration\ResourceCollection;
*/
final class TrackingEnvReader implements EnvReader, ResourceTrackable
{
private readonly EnvReader $envReader;
private ?ResourceCollection $resources = null;

View File

@ -13,7 +13,6 @@ use Symfony\Component\Config\Definition\Builder\ParentNodeDefinitionInterface;
*/
final class TreatNullAsUnsetNormalization
{
public function apply(ArrayNodeDefinition $root): void
{
foreach ($root->getChildNodeDefinitions() as $childNode) {

View File

@ -8,7 +8,6 @@ use Symfony\Component\Config\Resource\ResourceInterface;
interface ConfigurationLoader
{
public function loadConfiguration(mixed $configuration): void;
public function addResource(ResourceInterface $resource): void;

View File

@ -17,7 +17,6 @@ use Symfony\Component\Config\Resource\FileResource;
final class YamlExtensionFileLoader extends FileLoader
{
public function __construct(private readonly ConfigurationLoader $configuration, FileLocatorInterface $locator, ?string $env = null)
{
parent::__construct($locator, $env);

View File

@ -19,7 +19,6 @@ use Symfony\Component\Yaml\Yaml;
final class YamlSymfonyFileLoader extends FileLoader
{
public function __construct(private readonly ConfigurationLoader $configuration, FileLocatorInterface $locator, ?string $env = null)
{
parent::__construct($locator, $env);

View File

@ -10,7 +10,6 @@ use Symfony\Component\Config\Resource\ResourceInterface;
interface ResourceCollection
{
/**
* @param object|class-string $class
*

View File

@ -22,7 +22,6 @@ use Symfony\Component\Config\Definition\Builder\NodeDefinition;
*/
final class Validation
{
public static function ensureString(): Closure
{
return static function (mixed $value): ?string {

View File

@ -17,7 +17,6 @@ use OpenTelemetry\Config\SDK\Configuration\Environment\ServerEnvSource;
final class Instrumentation
{
/**
* @param ComponentPlugin<ConfigurationRegistry> $plugin
*/

View File

@ -11,7 +11,6 @@ namespace OpenTelemetry\Extension\Propagator\CloudTrace;
*/
final class Utils
{
/**
* Pads the string with zero string characters on left hand side, to max total string size.
*

View File

@ -12,7 +12,6 @@ use OpenTelemetry\SDK\Common\Instrumentation\InstrumentationScopeInterface;
*/
final class ConfiguratorClosure
{
public function __construct(
public readonly Closure $closure,
private readonly ?string $name,

View File

@ -6,7 +6,6 @@ namespace OpenTelemetry\SDK\Metrics\Data;
final class Gauge implements DataInterface
{
/**
* @param iterable<NumberDataPoint> $dataPoints
*/

View File

@ -13,6 +13,5 @@ use OpenTelemetry\SDK\Metrics\MetricRegistry\MetricCollectorInterface;
*/
interface MetricSourceRegistryUnregisterInterface
{
public function unregisterStream(MetricCollectorInterface $collector, int $streamId): void;
}

View File

@ -15,7 +15,6 @@ use OpenTelemetry\Context\Propagation\TextMapPropagatorInterface;
*/
final class LateBindingTextMapPropagator implements TextMapPropagatorInterface
{
/**
* @param TextMapPropagatorInterface|Closure(): TextMapPropagatorInterface $propagator
*/

View File

@ -12,7 +12,6 @@ use PHPUnit\Framework\TestCase;
#[CoversNothing]
final class ConfigurationTest extends TestCase
{
#[DataProvider('openTelemetryConfigurationDataProvider')]
public function test_open_telemetry_configuration(string $file): void
{

View File

@ -48,7 +48,6 @@ final class ConfigurationFactoryTest extends TestCase
$factory = new ConfigurationFactory(
[],
new class() implements \OpenTelemetry\Config\SDK\Configuration\ComponentProvider {
public function createPlugin(array $properties, Context $context): mixed
{
throw new BadMethodCallException();

View File

@ -13,7 +13,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class LogRecordExporterConsole implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -14,7 +14,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class LogRecordExporterOtlp implements ComponentProvider
{
/**
* @param array{
* protocol: 'http/protobuf'|'http/json'|'grpc/protobuf'|'grpc/json',

View File

@ -15,7 +15,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class LogRecordProcessorBatch implements ComponentProvider
{
/**
* @param array{
* schedule_delay: int<0, max>,

View File

@ -15,7 +15,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class LogRecordProcessorSimple implements ComponentProvider
{
/**
* @param array{
* exporter: ComponentPlugin<LogRecordExporter>,

View File

@ -13,7 +13,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class AggregationResolverDefault implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -13,7 +13,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class AggregationResolverDrop implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -14,7 +14,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class AggregationResolverExplicitBucketHistogram implements ComponentProvider
{
/**
* @param array{
* boundaries: list<float|int>,

View File

@ -13,7 +13,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class AggregationResolverLastValue implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -13,7 +13,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class AggregationResolverSum implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -13,7 +13,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class MetricExporterConsole implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -14,7 +14,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class MetricExporterOtlp implements ComponentProvider
{
/**
* @param array{
* protocol: 'http/protobuf'|'http/json'|'grpc/protobuf'|'grpc/json',

View File

@ -14,7 +14,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class MetricExporterPrometheus implements ComponentProvider
{
/**
* @param array{
* host: string,

View File

@ -15,7 +15,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class MetricReaderPeriodic implements ComponentProvider
{
/**
* @param array{
* interval: int<0, max>,

View File

@ -15,7 +15,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class MetricReaderPull implements ComponentProvider
{
/**
* @param array{
* exporter: ComponentPlugin<MetricExporter>,

View File

@ -21,7 +21,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class OpenTelemetryConfiguration implements ComponentProvider
{
/**
* @param array{
* file_format: '0.1',

View File

@ -13,7 +13,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class TextMapPropagatorB3 implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -13,7 +13,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class TextMapPropagatorB3Multi implements ComponentProvider
{
/**
* @param array{} $properties
*/

View File

@ -13,7 +13,6 @@ use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
final class TextMapPropagatorBaggage implements ComponentProvider
{
/**
* @param array{} $properties
*/

Some files were not shown because too many files have changed in this diff Show More