mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
fbe18cc022
Part of MDL-55071
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();
|
|
} |