Files
tt-rss/vendor/open-telemetry/sdk/Common/Attribute/AttributeValidatorInterface.php
T
2023-10-20 21:13:39 +03:00

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;
}