InfluxOW/php-project-lvl2

View on GitHub
src/Enums/AstNodeType.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Differ\Enums;

class AstNodeType
{
    public const REMOVED = 'removed';
    public const ADDED = 'added';
    public const CHANGED = 'changed';
    public const UNCHANGED = 'unchanged';
    public const NESTED = 'nested';
}