summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Common/Configuration/Resolver/ResolverInterface.php
blob: 4e88f3ff683472d6c1a39cae662686de5ed7b18f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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;
}