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