File tree Expand file tree Collapse file tree 3 files changed +22
-2
lines changed
app/code/Magento/PageBuilder/Model/Dom Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,12 @@ class Document implements DocumentInterface
23
23
/**
24
24
* @var ObjectManagerInterface
25
25
*/
26
- protected $ objectManager ;
26
+ private $ objectManager ;
27
27
28
28
/**
29
29
* @var GtDomDocument
30
30
*/
31
- protected $ document ;
31
+ private $ document ;
32
32
33
33
/**
34
34
* Document constructor.
Original file line number Diff line number Diff line change 18
18
*/
19
19
class HtmlDocument extends Document implements HtmlDocumentInterface
20
20
{
21
+ /**
22
+ * @var ObjectManagerInterface
23
+ */
24
+ private $ objectManager ;
25
+
26
+ /**
27
+ * @var GtDomHTMLDocument
28
+ */
29
+ private $ document ;
30
+
21
31
/**
22
32
* HtmlDocument constructor.
23
33
* @param ObjectManagerInterface $objectManager
Original file line number Diff line number Diff line change 16
16
*/
17
17
class XmlDocument extends Document implements XmlDocumentInterface
18
18
{
19
+ /**
20
+ * @var ObjectManagerInterface
21
+ */
22
+ private $ objectManager ;
23
+
24
+ /**
25
+ * @var GtDomXmlDocument
26
+ */
27
+ private $ document ;
28
+
19
29
/**
20
30
* XmlDocument constructor.
21
31
*
You can’t perform that action at this time.
0 commit comments