giansalex/peru-consult

View on GitHub
src/Peru/Sunat/HtmlParserInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Peru\Sunat;

interface HtmlParserInterface
{
    /**
     * @param string $html
     * @return array|false
     */
    public function parse(string $html);
}