Added reader interface

This commit is contained in:
Jeroen De Meerleer 2019-05-27 12:37:59 +02:00
parent 9e29bdf3e9
commit c5a035b9ba

View File

@ -0,0 +1,9 @@
<?php
namespace JeroenED\Libpairtwo\Interfaces;
interface ReaderInterface
{
public function read($filename);
}