REBELinBLUE\Deployer\Presenters\UserPresenter::presentAvatarUrl PHP Method

presentAvatarUrl() public method

Get the user avatar.
public presentAvatarUrl ( ) : string
return string
    public function presentAvatarUrl()
    {
        if ($this->getObject()->avatar) {
            return url($this->getObject()->avatar);
        }
        return Gravatar::get($this->getObject()->email);
    }
UserPresenter