Certificate manager built on Laravel 13, Livewire 4, and Flux. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
18 lines
321 B
PHP
18 lines
321 B
PHP
<?php
|
|
|
|
namespace App\Ocr\Providers;
|
|
|
|
use App\Ocr\OcrProviderInterface;
|
|
|
|
class NoneProvider implements OcrProviderInterface
|
|
{
|
|
/**
|
|
* OCR is disabled: return no suggestions.
|
|
*
|
|
* @return array{}
|
|
*/
|
|
public function analyze(string $filePath, ?string $apiKey): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|