We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd8fa35 commit 192e2baCopy full SHA for 192e2ba
src/PhpWord/Writer/RTF/Element/AbstractElement.php
@@ -41,14 +41,19 @@ abstract class AbstractElement extends HTMLAbstractElement
41
*
42
* @var \PhpOffice\PhpWord\Style\Font
43
*/
44
- private $fontStyle;
+ protected $fontStyle;
45
46
/**
47
* Paragraph style
48
49
* @var \PhpOffice\PhpWord\Style\Paragraph
50
51
- private $paragraphStyle;
+ protected $paragraphStyle;
52
+
53
+ /**
54
+ * @var \PhpOffice\PhpWord\Escaper\EscaperInterface
55
+ */
56
+ protected $escaper;
57
58
public function __construct(AbstractWriter $parentWriter, Element $element, $withoutP = false)
59
{
0 commit comments