File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
agent/php/ElasticApm/Impl/Util Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 2525
2626use Elastic \Apm \Impl \Log \LoggableInterface ;
2727use Elastic \Apm \Impl \Log \LoggableTrait ;
28+ use Stringable ;
2829
2930/**
3031 * Code in this file is part of implementation internals and thus it is not covered by the backward compatibility.
3132 *
3233 * @internal
3334 */
34- final class UrlParts implements LoggableInterface
35+ final class UrlParts implements LoggableInterface, Stringable
3536{
3637 use LoggableTrait;
3738
Original file line number Diff line number Diff line change 2323
2424namespace Elastic \Apm \Impl \Util ;
2525
26+ use Stringable ;
27+
2628/**
2729 * Code in this file is part of implementation internals and thus it is not covered by the backward compatibility.
2830 *
2931 * @internal
3032 */
31- final class WildcardListMatcher
33+ final class WildcardListMatcher implements Stringable
3234{
3335 /** @var WildcardMatcher[] */
3436 private $ matchers ;
Original file line number Diff line number Diff line change 2323
2424namespace Elastic \Apm \Impl \Util ;
2525
26+ use Stringable ;
27+
2628/**
2729 * Code in this file is part of implementation internals and thus it is not covered by the backward compatibility.
2830 *
2931 * @internal
3032 */
31- final class WildcardMatcher
33+ final class WildcardMatcher implements Stringable
3234{
3335 private const CASE_SENSITIVE_PREFIX = '(?-i) ' ;
3436 private const WILDCARD = '* ' ;
You can’t perform that action at this time.
0 commit comments