for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Easychimp;
class Support
{
/**
* @param $email
* @return string
*/
public function hashEmail($email)
return md5(strtolower($email));
}