Files
api/services/nginx/app/interfaces/minio_wash_certificates_i.php
T
2025-01-29 14:27:44 +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;
}