Your IP : 216.73.216.158


Current Path : /home/rtorresani/www/vendor/sabberworm/php-css-parser/src/
Upload File :
Current File : //home/rtorresani/www/vendor/sabberworm/php-css-parser/src/Renderable.php

<?php

namespace Sabberworm\CSS;

interface Renderable
{
    /**
     * @return string
     */
    public function __toString();

    /**
     * @return string
     */
    public function render(OutputFormat $oOutputFormat);

    /**
     * @return int
     */
    public function getLineNo();
}