Files
fil/docs/snippets/php/plugins/unregister_plugins.md
Henrik Jess Nielsen b4c07d3693
All checks were successful
Deploy fil (kreuzberg) / deploy (push) Successful in 49s
Nomad changes
2026-06-01 23:40:55 +02:00

17 lines
383 B
Markdown

```php title="PHP"
<?php declare(strict_types=1);
use Kreuzberg\Kreuzberg;
// Unregister all OCR backends by clearing the registry
Kreuzberg::clearOcrBackends();
// Unregister all post-processors by clearing the registry
Kreuzberg::clearPostProcessors();
// Unregister all validators by clearing the registry
Kreuzberg::clearValidators();
echo "All plugins unregistered\n";
```