Files
MtoRagSystem/src/Knowledge/Extractor/DocumentExtractorInterface.php
2026-02-12 20:57:54 +01:00

13 lines
217 B
PHP

<?php
declare(strict_types=1);
namespace App\Knowledge\Extractor;
interface DocumentExtractorInterface
{
public function supports(string $extension): bool;
public function extract(string $path): string;
}