mirror of
https://github.com/php/phd.git
synced 2026-03-24 15:12:18 +01:00
16 lines
223 B
PHP
16 lines
223 B
PHP
<?php
|
|
namespace phpdotnet\phd;
|
|
|
|
abstract class PIHandler {
|
|
protected $format;
|
|
|
|
public function __construct($format) {
|
|
$this->format = $format;
|
|
}
|
|
|
|
public abstract function parse($target, $data);
|
|
|
|
}
|
|
|
|
|