libpairtwo/src/Interfaces/ReaderInterface.php
Jeroen De Meerleer e979b7e556 MAJOR ENHANCEMENT: Generalisation
This is a first step in generalisation of the project. Please review https://github.com/JeroenED/libpairtwo/wiki/Converting-your-code-to-the-generalized-format for more info on your code changes
2019-05-27 13:15:49 +02:00

10 lines
118 B
PHP

<?php
namespace JeroenED\Libpairtwo\Interfaces;
interface ReaderInterface
{
public function read($filename);
}