InfluxOW/php-project-lvl2

View on GitHub
src/Enums/AstKey.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Differ\Enums;

class AstKey
{
    public const TYPE = 'type';
    public const KEY = 'key';
    public const VALUE_BEFORE = 'valueBefore';
    public const VALUE_AFTER = 'valueAfter';
    public const CHILDREN = 'children';
}