13 lines
217 B
PHP
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;
|
|
}
|