MDL-75475 lib: Upgraded PHP CSS Parser to 8.4.0

This commit is contained in:
David Woloszyn
2022-10-20 09:32:47 +11:00
parent f8d28e4ca6
commit c8ee3c9051
40 changed files with 5244 additions and 3086 deletions
+17 -5
View File
@@ -2,8 +2,20 @@
namespace Sabberworm\CSS;
interface Renderable {
public function __toString();
public function render(\Sabberworm\CSS\OutputFormat $oOutputFormat);
public function getLineNo();
}
interface Renderable
{
/**
* @return string
*/
public function __toString();
/**
* @return string
*/
public function render(OutputFormat $oOutputFormat);
/**
* @return int
*/
public function getLineNo();
}