<?php
/*
* Ladybug: Simple and Extensible PHP Dumper
*
* ProcessorInterface
*
* (c) Raúl Fraile Beneyto <hide@address.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Ladybug\Processor;
interface ProcessorInterface
{
/**
* Process the HTML code and make the proper changes
*
* @param string $str html code
* @return string modified html code
*/
function process($str);
/**
* Fast check to see if str is processable
*
* @param string $str html code
* @return boolean true if is processable
*/
function isProcessable($str);
}