1
0
mirror of https://github.com/moodle/moodle.git synced 2025-06-22 16:14:14 +02:00
Files
moodle/lib/php-css-parser/Renderable.php
2022-10-20 09:32:47 +11:00

22 lines
296 B
PHP

<?php
namespace Sabberworm\CSS;
interface Renderable
{
/**
* @return string
*/
public function __toString();
/**
* @return string
*/
public function render(OutputFormat $oOutputFormat);
/**
* @return int
*/
public function getLineNo();
}