8 lines
116 B
PHP
8 lines
116 B
PHP
<?php
|
|
|
|
namespace App\Shared\Files;
|
|
|
|
interface StoredFileReader
|
|
{
|
|
public function read(string $path): ?string;
|
|
}
|