Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Phpdftk\Pdf\Core; |
| 6 | |
| 7 | /** |
| 8 | * Implemented by objects whose minimum PDF version depends on runtime |
| 9 | * state (e.g., a property value) rather than a static attribute. |
| 10 | * |
| 11 | * The {@see File\VersionRequirementResolver} will call this method and |
| 12 | * merge its result with any attribute-based requirements. |
| 13 | */ |
| 14 | interface PdfVersionAware |
| 15 | { |
| 16 | public function getMinimumPdfVersion(): ?PdfVersion; |
| 17 | } |