su-mi-lab/mound

View on GitHub
src/RuleInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Mound;

/**
 * Interface RuleInterface
 * @package Mound
 */
interface RuleInterface
{

    /**
     * @param $value
     * @param array $context
     * @return mixed
     */
    public function call($value, array $context);
}