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