1<?php
2
3declare(strict_types=1);
4
5namespace JMS\Serializer\Expression;
6
7/**
8 * @author Asmir Mustafic <goetas@gmail.com>
9 */
10interface ExpressionEvaluatorInterface
11{
12    /**
13     * @return mixed
14     */
15    public function evaluate(string $expression, array $data = []);
16}
17