| Total Complexity | 6 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 9 | class DropShadow extends AVGFilter implements \JsonSerializable |
||
| 10 | { |
||
| 11 | public const TYPE = AVGFilterType::DROP_SHADOW; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @param string|null $color Color of the drop shadow |
||
| 15 | * @param int|null $horizontalOffset Horizontal offset of the shadow |
||
| 16 | * @param int|null $radius Blur radius of the shadow |
||
| 17 | * @param int|null $verticalOffset Vertical offset of the shadow |
||
| 18 | */ |
||
| 19 | 12 | public function __construct( |
|
| 26 | } |
||
| 27 | |||
| 28 | 8 | public function jsonSerialize(): array |
|
| 51 |