Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
unDemian authored and uyab committed Oct 11, 2024
1 parent 343724d commit 9d084c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Avatar.php
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public function toSvg(): string
public function toGravatar(array $param = null): string
{
// Hash generation taken from https://docs.gravatar.com/api/avatars/php/
$hash = hash('sha256',strtolower(trim($this->name)));
$hash = hash('sha256', strtolower(trim($this->name)));

$attributes = [];
if ($this->width) {
Expand Down

0 comments on commit 9d084c0

Please sign in to comment.