* @license MIT */ class ParameterHasher { /** * Converts the given parameters into a likely-unique hash */ public function hashParameters(array $parameters) : string { return md5(serialize($parameters)); } }