| 1 | <?php |
||
| 5 | class FileEvaluator implements Evaluator |
||
| 6 | { |
||
| 7 | private $directory; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @param string $directory The directory in which the compiled executors are stored. Defaults to the system's temp directory. |
||
| 11 | */ |
||
| 12 | public function __construct($directory = null) |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @inheritdoc |
||
| 19 | */ |
||
| 20 | public function evaluate($ruleIdentifier, callable $compiler) |
||
| 30 | } |
||
| 31 |