Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
<?php
2
 
3
namespace Sabberworm\CSS;
4
 
5
interface Renderable
6
{
7
    /**
8
     * @return string
9
     */
10
    public function __toString();
11
 
12
    /**
13
     * @param OutputFormat|null $oOutputFormat
14
     *
15
     * @return string
16
     */
17
    public function render($oOutputFormat);
18
 
19
    /**
20
     * @return int
21
     */
22
    public function getLineNo();
23
}