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;
|
|
} |