. * * @author Spencer Mortensen * @license http://www.gnu.org/licenses/lgpl-3.0.html LGPL-3.0 * @copyright 2015 Datto, Inc. */ namespace Datto\JsonRpc; interface Evaluator { /** * @param string $method * @param array $arguments * @return mixed */ public function evaluate($method, $arguments); }