9 lines
218 B
PHP
9 lines
218 B
PHP
<?php
|
|
namespace MailPoetVendor\Sabberworm\CSS;
|
|
if (!defined('ABSPATH')) exit;
|
|
interface Renderable
|
|
{
|
|
public function __toString();
|
|
public function render(OutputFormat $oOutputFormat);
|
|
public function getLineNo();
|
|
}
|