Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| FeComponentTransfer | |
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\Filter; |
| 6 | |
| 7 | /** |
| 8 | * SVG 2 Filter Effects §15.14 — `<feComponentTransfer>` applies |
| 9 | * per-channel transfer functions to the input. Contains up to |
| 10 | * four child elements (`feFuncR`, `feFuncG`, `feFuncB`, `feFuncA`) |
| 11 | * each defining the transfer for one channel. |
| 12 | */ |
| 13 | final class FeComponentTransfer extends FilterPrimitive |
| 14 | { |
| 15 | public function __construct() |
| 16 | { |
| 17 | parent::__construct('feComponentTransfer'); |
| 18 | } |
| 19 | } |