File "Renderable.php"

Full Path: /home/warrior1/public_html/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Renderable.php
File size: 296 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Sabberworm\CSS;

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

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

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