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
AllenJB b9eb060be4 Make generated example IDs page specific (#210)
* Make example id attribute counter reset on each page (fixes #205)
2025-11-04 00:47:09 +00:00

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);
}