forked from fa/breadcrumb-the-shire
18 lines
347 B
PHP
18 lines
347 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace MintyPHP\Service\Audit;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* No-op API system audit reporter used when the audit module is disabled.
|
||
|
|
*/
|
||
|
|
final class NullApiSystemAuditReporter implements ApiSystemAuditReporterInterface
|
||
|
|
{
|
||
|
|
public function start(): void
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
public function finish(int $statusCode, ?string $errorCode = null): void
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|