mirror of
https://github.com/php/phd.git
synced 2026-03-23 22:52:05 +01:00
21 lines
295 B
PHP
21 lines
295 B
PHP
<?php
|
|
namespace phpdotnet\phd;
|
|
/* $Id$ */
|
|
|
|
abstract class PIHandler {
|
|
protected $format;
|
|
|
|
public function __construct($format) {
|
|
$this->format = $format;
|
|
}
|
|
|
|
public abstract function parse($target, $data);
|
|
|
|
}
|
|
|
|
/*
|
|
* vim600: sw=4 ts=4 syntax=php et
|
|
* vim<600: sw=4 ts=4
|
|
*/
|
|
|