Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | class BooleanObject extends \YetiForcePDF\Objects\PdfObject |
||
20 | { |
||
21 | /** |
||
22 | * Basic object type (integer, string, boolean, dictionary etc..). |
||
23 | * |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $basicType = 'Boolean'; |
||
27 | /** |
||
28 | * Object name. |
||
29 | * |
||
30 | * @var string |
||
31 | */ |
||
32 | protected $name = 'Boolean'; |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function render(): string |
||
42 |