mirror of
https://github.com/php/phd.git
synced 2026-03-24 07:02:07 +01:00
20 lines
345 B
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
|
|
*/
|
|
|