Sobak/scrawler

View on GitHub
src/Block/Matcher/ListMatcherInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Sobak\Scrawler\Block\Matcher;

use ArrayIterator;

interface ListMatcherInterface extends MatcherInterface
{
    public function match(): ArrayIterator;
}