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