1
0
mirror of https://github.com/php/phd.git synced 2026-03-24 07:02:07 +01:00
Files
archived-phd/phpdotnet/phd/Theme.php

20 lines
345 B
PHP

<?php
/* $Id$ */
abstract class PhDTheme extends PhDHelper implements iPhDTheme {
protected $format;
public function registerFormat($format) {
$this->format = $format;
}
}
interface iPhDTheme {
public function appendData($data, $isChunk);
}
/*
* vim600: sw=4 ts=4 fdm=syntax syntax=php et
* vim<600: sw=4 ts=4
*/