16 lines
281 B
PHP
16 lines
281 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace OpenTelemetry\SDK\Common\Configuration\Resolver;
|
||
|
|
||
|
interface ResolverInterface
|
||
|
{
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function retrieveValue(string $variableName);
|
||
|
|
||
|
public function hasVariable(string $variableName): bool;
|
||
|
}
|