AutorÃa | Ultima modificación | Ver Log |
<?php
namespace Sabberworm\CSS;
interface Renderable
{
/**
* @return string
*/
public function __toString();
/**
* @param OutputFormat|null $oOutputFormat
*
* @return string
*/
public function render($oOutputFormat);
/**
* @return int
*/
public function getLineNo();
}