1 | <?php |
||
13 | class PlaceholderContainerStepNode extends StepNode implements PlaceholderContainer{ |
||
14 | |||
15 | private $stepNode; |
||
16 | |||
17 | private $variant; |
||
18 | |||
19 | private $configKey; |
||
20 | |||
21 | private $sectionKey; |
||
22 | |||
23 | function __construct($stepNode,$configKey, $sectionKey, $variant) { |
||
29 | |||
30 | |||
31 | public function getArguments() { |
||
34 | |||
35 | public function getKeyword() { |
||
38 | |||
39 | public function getKeywordType() { |
||
42 | |||
43 | public function getLine() { |
||
46 | |||
47 | public function getNodeType() { |
||
50 | |||
51 | public function getText() { |
||
54 | |||
55 | public function getType() { |
||
58 | |||
59 | public function hasArguments() { |
||
62 | |||
63 | public function getConfigKey() { |
||
66 | |||
67 | public function getSectionKey() { |
||
70 | |||
71 | public function getVariant() { |
||
74 | |||
75 | |||
76 | } |
||
77 |
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.