File "Renderable.php"
Full Path: /home/ichhrkpd/public_html/idcm/application/third_party/dompdf/vendor/sabberworm/php-css-parser/src/Renderable.php
File size: 337 bytes
MIME-type: text/x-php
Charset: utf-8
<?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();
}