for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace RulerZ\Compiler;
/**
* Evaluates PHP code using the `eval` function.
*
* Usage:
* ```
* $evaluator = new EvalEvaluator();
* $evaluator->evaluate('some-rule-unique-identifier', function() {
* return "echo 'Hello World';";
* });
*/
class EvalEvaluator implements Evaluator
{
public function evaluate(string $ruleIdentifier, callable $compiler): void
eval($compiler());
}