Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| StampStyle | |
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\Pdf\Toolkit\Stamper; |
| 6 | |
| 7 | /** |
| 8 | * Style configuration for text stamps. |
| 9 | */ |
| 10 | final readonly class StampStyle |
| 11 | { |
| 12 | public function __construct( |
| 13 | public float $fontSize = 12.0, |
| 14 | public string $fontName = 'Helvetica', |
| 15 | public float $r = 0.0, |
| 16 | public float $g = 0.0, |
| 17 | public float $b = 0.0, |
| 18 | public float $opacity = 1.0, |
| 19 | public float $rotation = 0.0, |
| 20 | ) {} |
| 21 | } |