Rabbi_Gerzi/backend/app/Shared/Files/StoredFileReader.php

8 lines
116 B
PHP

<?php
namespace App\Shared\Files;
interface StoredFileReader
{
public function read(string $path): ?string;
}