Sha256: 93d67063f3018f2406353270585e206dccdee9638bb68a2e73b0d5f52207c719
Contents?: true
Size: 640 Bytes
Versions: 10
Compression:
Stored size: 640 Bytes
Contents
<?php namespace MtHaml\Node; use MtHaml\NodeVisitor\NodeVisitorInterface; class TagAttributeList extends TagAttribute { public function __construct(array $position, NodeAbstract $value = null) { parent::__construct($position, null, $value); } public function accept(NodeVisitorInterface $visitor) { if (false !== $visitor->enterTagAttribute($this)) { if (false !== $visitor->enterTagAttributeList($this)) { $this->getValue()->accept($visitor); } $visitor->leaveTagAttributeList($this); } $visitor->leaveTagAttribute($this); } }
Version data entries
10 entries across 10 versions & 1 rubygems