mirror of
https://github.com/JeroenED/libpairtwo.git
synced 2024-11-22 22:46:57 +01:00
10 lines
118 B
PHP
10 lines
118 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
namespace JeroenED\Libpairtwo\Interfaces;
|
||
|
|
||
|
interface ReaderInterface
|
||
|
{
|
||
|
public function read($filename);
|
||
|
}
|