Animation: Use correct name case for DOMElement::setAttribute()

This commit is contained in:
raviks789 2023-08-15 09:52:42 +02:00
parent e1fd5c8500
commit 2b60a86731

View File

@ -80,7 +80,7 @@ class Animation implements Drawable
$animate->setAttribute('to', $this->to); $animate->setAttribute('to', $this->to);
$animate->setAttribute('begin', $this->begin . 's'); $animate->setAttribute('begin', $this->begin . 's');
$animate->setAttribute('dur', $this->duration . 's'); $animate->setAttribute('dur', $this->duration . 's');
$animate->setAttributE('fill', "freeze"); $animate->setAttribute('fill', "freeze");
return $animate; return $animate;
} }