Files
api/interfaces/minio_wash_certificates_i.php
T
Jepp9350 0413071432 Add Minio integration for wash certificate storage
Introduced Minio support to store and manage wash certificates, replacing local file storage. This includes implementing traits, interfaces, and a Minio client integration, along with a CLI utility and relevant tests. Updated relevant modules and configurations.
2025-01-14 10:56:50 +01:00

13 lines
257 B
PHP

<?php
namespace interfaces;
interface minio_wash_certificates_i
{
/**
* Check if a wash certificate exists
* @param string $certificate_id
* @return bool
*/
public function washCertificateExists(string $certificate_id): bool;
}