for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sioen\HtmlToJson;
interface Converter
{
/**
* @param \DomElement $node
* @return array
*/
public function toJson(\DOMElement $node);
* @return boolean
public function matches(\DOMElement $node);
}