for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Usamamuneerchaudhary\Commentify\Traits;
trait HasUserAvatar
{
/**
* @return string
*/
public function avatar(): string
return 'https://gravatar.com/avatar/'.md5($this->email).'?s=80&d=mp';
}