From 2b60a86731a18097143dd5f8ef9d8de97242b823 Mon Sep 17 00:00:00 2001 From: raviks789 <33730024+raviks789@users.noreply.github.com> Date: Tue, 15 Aug 2023 09:52:42 +0200 Subject: [PATCH] `Animation`: Use correct name case for `DOMElement::setAttribute()` --- library/Icinga/Chart/Primitive/Animation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icinga/Chart/Primitive/Animation.php b/library/Icinga/Chart/Primitive/Animation.php index 4e55d0e58..e620fa70f 100644 --- a/library/Icinga/Chart/Primitive/Animation.php +++ b/library/Icinga/Chart/Primitive/Animation.php @@ -80,7 +80,7 @@ class Animation implements Drawable $animate->setAttribute('to', $this->to); $animate->setAttribute('begin', $this->begin . 's'); $animate->setAttribute('dur', $this->duration . 's'); - $animate->setAttributE('fill', "freeze"); + $animate->setAttribute('fill', "freeze"); return $animate; }