|
1
|
<?php |
|
2
|
|
|
3
|
namespace IAWP\Sabberworm\CSS; |
|
4
|
|
|
5
|
interface Renderable |
|
6
|
{ |
|
7
|
/** |
|
8
|
* @return string |
|
9
|
*/ |
|
10
|
public function __toString(); |
|
11
|
/** |
|
12
|
* @return string |
|
13
|
*/ |
|
14
|
public function render(OutputFormat $oOutputFormat); |
|
15
|
/** |
|
16
|
* @return int |
|
17
|
*/ |
|
18
|
public function getLineNo(); |
|
19
|
} |
|
20
|
|