%PDF- %PDF-
Direktori : /var/www/pn/utils/vendor/paquettg/php-html-parser/src/PHPHtmlParser/Dom/Node/ |
Current File : /var/www/pn/utils/vendor/paquettg/php-html-parser/src/PHPHtmlParser/Dom/Node/ArrayNode.php |
<?php declare(strict_types=1); namespace PHPHtmlParser\Dom\Node; use ArrayIterator; use Countable; use IteratorAggregate; use PHPHtmlParser\Dom\Tag; /** * Dom node object which will allow users to use it as * an array. * * @property-read string $outerhtml * @property-read string $innerhtml * @property-read string $innerText * @property-read string $text * @property-read Tag $tag * @property-read InnerNode $parent */ abstract class ArrayNode extends AbstractNode implements IteratorAggregate, Countable { /** * Gets the iterator. */ public function getIterator(): ArrayIterator { return new ArrayIterator($this->getIteratorArray()); } /** * Returns the count of the iterator array. */ public function count(): int { return \count($this->getIteratorArray()); } /** * Returns the array to be used the the iterator. */ abstract protected function getIteratorArray(): array; }