Renderable.php 159 Bytes
<?php

namespace Sabberworm\CSS;

interface Renderable {
	public function __toString();
	public function render(\Sabberworm\CSS\OutputFormat $oOutputFormat);
}