district09/php_package_dg-api-client

View on GitHub
src/Logger/LoggableInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace DigipolisGent\API\Logger;

/**
 * Allows loggers to be added to an object.
 */
interface LoggableInterface
{
    /**
     * Add a logger to the client to log interactions and errors.
     *
     * @param LoggerInterface $logger
     */
    public function addLogger(LoggerInterface $logger): void;
}