Your IP : 216.73.216.145


Current Path : /home/users/unlimited/www/mpos.codeskitter.site/vendor/sabberworm/php-css-parser/src/
Upload File :
Current File : /home/users/unlimited/www/mpos.codeskitter.site/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();
}