krixon/rules

View on GitHub
src/Ast/ExposesValue.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Krixon\Rules\Ast;

trait ExposesValue
{
    private $value;


    public function value()
    {
        return $this->value;
    }
}