mirror of
https://github.com/php/phd.git
synced 2026-03-24 07:02:07 +01:00
19 lines
273 B
PHP
19 lines
273 B
PHP
<?php
|
|
namespace phpdotnet\phd;
|
|
|
|
abstract class PIHandler {
|
|
/**
|
|
* @var \phpdotnet\phd\Format
|
|
*/
|
|
protected $format;
|
|
|
|
public function __construct($format) {
|
|
$this->format = $format;
|
|
}
|
|
|
|
public abstract function parse($target, $data);
|
|
|
|
}
|
|
|
|
|