1
0
mirror of https://github.com/php/phd.git synced 2026-03-23 22:52:05 +01:00
Files
archived-phd/phpdotnet/phd/PIHandler.php
Hannes Magnusson 9bacdbd09b - Add missing $Id$ tags and vim modelines
- Remove useless closing tags
2009-07-30 16:56:01 +00:00

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
*/