From 9d084c0835887033e713b23859cdee7af656c6b6 Mon Sep 17 00:00:00 2001 From: Andrei Demian Date: Fri, 27 Sep 2024 11:49:19 +0300 Subject: [PATCH] Fix linting --- src/Avatar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Avatar.php b/src/Avatar.php index 23a6732..db18449 100644 --- a/src/Avatar.php +++ b/src/Avatar.php @@ -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) {