add pdf reader modul

This commit is contained in:
team2
2026-02-12 20:57:54 +01:00
parent 14d7f3b2b9
commit a625468a9a
9 changed files with 229 additions and 6 deletions

View File

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