Added reader interface

This commit is contained in:
Jeroen De Meerleer 2019-05-27 12:37:59 +02:00
parent 2747bd0476
commit f645636d29
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
1 changed files with 9 additions and 0 deletions

View File

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