12 lines
215 B
PHP
12 lines
215 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace OpenTelemetry\SDK\Common\Attribute;
|
||
|
|
||
|
interface AttributeValidatorInterface
|
||
|
{
|
||
|
public function validate($value): bool;
|
||
|
public function getInvalidMessage(): string;
|
||
|
}
|