Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| Animate | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Phpdftk\Svg; |
| 6 | |
| 7 | /** |
| 8 | * SVG 2 §19.4 — `<animate>` interpolates a single attribute over |
| 9 | * time. Print medium ignores playback; the typed class lets the |
| 10 | * Translator skip the element explicitly. |
| 11 | */ |
| 12 | final class Animate extends Animation |
| 13 | { |
| 14 | public function __construct() |
| 15 | { |
| 16 | parent::__construct('animate'); |
| 17 | } |
| 18 | } |