mirror of
https://github.com/moodle/moodle.git
synced 2025-02-24 12:03:12 +01:00
9 lines
189 B
PHP
9 lines
189 B
PHP
<?php
|
|
|
|
namespace Sabberworm\CSS;
|
|
|
|
interface Renderable {
|
|
public function __toString();
|
|
public function render(\Sabberworm\CSS\OutputFormat $oOutputFormat);
|
|
public function getLineNo();
|
|
} |