@@ -10,6 +10,7 @@ |
||
| 10 | 10 | { |
| 11 | 11 | /** |
| 12 | 12 | * @param AttributeVisitorInterface $visitor |
| 13 | + * @return void |
|
| 13 | 14 | */ |
| 14 | 15 | public function accept(AttributeVisitorInterface $visitor); |
| 15 | 16 | } |
| 16 | 17 | \ No newline at end of file |
@@ -13,11 +13,13 @@ |
||
| 13 | 13 | { |
| 14 | 14 | /** |
| 15 | 15 | * @param Attribute $attribute |
| 16 | + * @return void |
|
| 16 | 17 | */ |
| 17 | 18 | public function visitAttribute(Attribute $attribute); |
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * @param XmlAttribute $attribute |
| 22 | + * @return void |
|
| 21 | 23 | */ |
| 22 | 24 | public function visitXmlAttribute(XmlAttribute $attribute); |
| 23 | 25 | } |
| 24 | 26 | \ No newline at end of file |
@@ -10,6 +10,7 @@ |
||
| 10 | 10 | { |
| 11 | 11 | /** |
| 12 | 12 | * @param ElementVisitorInterface $visitor |
| 13 | + * @return void |
|
| 13 | 14 | */ |
| 14 | 15 | public function accept(ElementVisitorInterface $visitor); |
| 15 | 16 | } |
| 16 | 17 | \ No newline at end of file |
@@ -14,16 +14,19 @@ |
||
| 14 | 14 | { |
| 15 | 15 | /** |
| 16 | 16 | * @param Element $element |
| 17 | + * @return void |
|
| 17 | 18 | */ |
| 18 | 19 | public function visitElement(Element $element); |
| 19 | 20 | |
| 20 | 21 | /** |
| 21 | 22 | * @param XmlElement $element |
| 23 | + * @return void |
|
| 22 | 24 | */ |
| 23 | 25 | public function visitXmlElement(XmlElement $element); |
| 24 | 26 | |
| 25 | 27 | /** |
| 26 | 28 | * @param XmlNode $node |
| 29 | + * @return void |
|
| 27 | 30 | */ |
| 28 | 31 | public function visitXmlNode(XmlNode $node); |
| 29 | 32 | } |
| 30 | 33 | \ No newline at end of file |