1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
namespace Sabberworm\CSS;
interface Renderable { /** * @return string * * @deprecated in V8.8.0, will be removed in V9.0.0. Use `render` instead. */ public function __toString();
/** * @param OutputFormat|null $oOutputFormat * * @return string */ public function render($oOutputFormat);
/** * @return int */ public function getLineNo(); }
|