krixon/rules

View on GitHub
src/Ast/LiteralNode.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Krixon\Rules\Ast;

interface LiteralNode extends Node
{
    public function value();
    public static function type() : string;
}