Skip to content

Commit

Permalink
interface
Browse files Browse the repository at this point in the history
  • Loading branch information
brettmc committed Jul 22, 2024
1 parent 0447da6 commit 471d391
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/SDK/Common/InstrumentationScope/Configurator.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use OpenTelemetry\SDK\Common\Instrumentation\InstrumentationScopeInterface;

class Configurator
class Configurator implements ScopeConfigurator
{
/**
* @param list<Condition> $conditions
Expand Down
10 changes: 10 additions & 0 deletions src/SDK/Common/InstrumentationScope/ScopeConfigurator.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

namespace OpenTelemetry\SDK\Common\InstrumentationScope;

use OpenTelemetry\SDK\Common\Instrumentation\InstrumentationScopeInterface;

interface ScopeConfigurator
{
public function getConfig(InstrumentationScopeInterface $scope): Config;
}

0 comments on commit 471d391

Please sign in to comment.