MDL-55224 core: Import PHP-CSS-Parser into core

Part of MDL-55071
This commit is contained in:
Frederic Massart
2016-09-23 10:49:49 +01:00
committed by Dan Poltawski
parent e86eb6b80d
commit fbe18cc022
34 changed files with 3307 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
namespace Sabberworm\CSS;
interface Renderable {
public function __toString();
public function render(\Sabberworm\CSS\OutputFormat $oOutputFormat);
public function getLineNo();
}