PHP Classes

File: src/Telemetry/src/TraceKind.php

Recommend this page to a friend!
  Packages of Wolfy-J   spiral   src/Telemetry/src/TraceKind.php   Download  
File: src/Telemetry/src/TraceKind.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: spiral
Modular Web application development framework
Author: By
Last change:
Date: 2 months ago
Size: 172 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
Spiral\Telemetry;

enum TraceKind
{
    case
INTERNAL;
    case
CLIENT;
    case
SERVER;
    case
PRODUCER;
    case
CONSUMER;
}