Your IP : 216.73.217.13


Current Path : /var/www/magento.test.indacotrentino.com/www/vendor/sabberworm/php-css-parser/src/
Upload File :
Current File : /var/www/magento.test.indacotrentino.com/www/vendor/sabberworm/php-css-parser/src/Renderable.php

<?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();
}